
<!DOCTYPE html>
<html id="glang" lang="en">
<head>



<!-- Didomi start -->
                <script id="didomi-geo">window.didomiConfig = {"user": {  "country": "US", "region": "SC" }};</script>
                                <script type="text/javascript">
                                    (function () { (function (e, i, o) { var n = document.createElement("link"); n.rel = "preconnect"; n.as = "script"; var t = document.createElement("link"); t.rel = "dns-prefetch"; t.as = "script"; var r = document.createElement("script"); r.id = "spcloader"; r.type = "text/javascript"; r["async"] = true; r.charset = "utf-8"; window.didomiConfig = window.didomiConfig || { sdkPath: 'https://www.wsp.com/consent/', apiPath: 'https://www.wsp.com/consent/api/' }; window.didomiConfig.sdkPath = window.didomiConfig.sdkPath || o || "https://sdk.privacy-center.org/"; const d = window.didomiConfig.sdkPath; var a = d + e + "/loader.js?target_type=notice&target=" + i; if (window.didomiConfig && window.didomiConfig.user) { var c = window.didomiConfig.user; var s = c.country; var f = c.region; if (s) { a = a + "&country=" + s; if (f) { a = a + "&region=" + f } } } n.href = d; t.href = d; r.src = a; var m = document.getElementsByTagName("script")[0]; m.parentNode.insertBefore(n, m); m.parentNode.insertBefore(t, m); m.parentNode.insertBefore(r, m) })("4b9706bf-7965-4428-994b-85ab0ffae795", "qFZXhEPg", "https://www.wsp.com/consent/") })();
                                </script>
 <!-- Didomi end -->
<!-- Google Tag Manager -->
<script>
    dataLayer =[{ 
               'site':'wsp',
               'region':'united states',
               'siteMenuLevel1':'none',
               'siteMenuLevel2':'none',
               'siteMenuLevel3':'none',
               'pageType':'Home',
               'pageName':'home',
               'pageLanguage':'english'
        }];
    dataLayer.push({
        'event': 'page_view',
        'event_name': 'page_view',
        'page': {
            'page_language': 'en',
            'page_region': 'united states',
            'page_location': 'https://www.wsp.com/en-us',
            'page_path': '/en-us',
            'page_category': 'null',
            'page_type': 'null'
        }
    });

</script>
<!--Prod-->
<script>
   // var trackingId = 'UA-9894208-21';
    (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-5TWWLBD');
</script>

<!-- End Google Tag Manager -->
<!-- Google Webmaster Tool -->
<meta name="google-site-verification" content="S1QXoVjxtxWuAufaxMBlT4SSUmsmxgYqFHXw_pEHN8A" />
<!-- End Google Webmaster Tool -->

<!-- Didomi Disagree Button for US country -- start -->
<script>
    window.addEventListener("load", function () {
        window.didomiOnReady = window.didomiOnReady || [];
        window.didomiOnReady.push(function () {

            console.log("Didomi ready — bootstrapping disagree-injector...");

            // Read and normalize geo
            const geo = window.didomiConfig?.user || {};
            const country = (geo.country || "").toUpperCase();
            const region = (geo.region || "").toUpperCase();

            console.log("Geo:", country, region);

            if (!(country === "US")) {
                console.warn("Not US+CA — exiting injector.");
                return;
            }

            // --- injection function (idempotent) ---
            function injectDisagreeButton() {
                try {
                    // avoid double-insert
                    if (document.querySelector("#didomi-notice-disagree-button")) {
                        console.log("Disagree button already present — skipping inject.");
                        return true;
                    }

                    const agreeBtn = document.querySelector("#didomi-notice-agree-button");
                    const leftBtn = document.querySelector("#didomi-notice-learn-more-button");

                    if (!agreeBtn || !leftBtn) {
                        return false; // nothing to do yet
                    }

                    console.log("Injecting Disagree button now.");

                    const disagreeBtn = document.createElement("button");
                    disagreeBtn.id = "didomi-notice-disagree-button";
                    disagreeBtn.className =
                        "didomi-components-button didomi-button didomi-disagree-button didomi-components-button--color didomi-button-highlight highlight-button";

                    disagreeBtn.setAttribute("aria-label", "Rifiuta tutti");
                    disagreeBtn.style.cssText = `
                    color: #ffffff;
                    background-color: rgb(224, 47, 40);
                    border-radius: 0px;
                    border-color: rgba(224, 47, 40, 0.3);
                    border-width: 1px;
                    margin: 0 10px 0 auto;
                `;
                    disagreeBtn.innerHTML = `<span>Do not sell or share my personal information</span>`;

                    agreeBtn.parentNode.insertBefore(disagreeBtn, agreeBtn);

                    // click handler
                    disagreeBtn.addEventListener("click", async function () {
                        console.log("Disagree clicked");
                        try {
                            if (typeof Didomi.setUserDisagreeToAll === "function") {
                                await Didomi.setUserDisagreeToAll();
                                console.log("User disagree saved.");
                            } else {
                                console.warn("Didomi.setUserDisagreeToAll not available.");
                            }
                            if (Didomi.notice && typeof Didomi.notice.hide === "function") {
                                Didomi.notice.hide();
                                console.log("Didomi notice hidden.");
                            }
                        } catch (e) {
                            console.error("Error during disagree:", e);
                        }
                    });

                    return true;
                } catch (e) {
                    console.error("Inject error:", e);
                    return false;
                }
            }

            // 1) Try immediate inject (if notice already present)
            if (injectDisagreeButton()) {
                console.log("Injected immediately because buttons were present.");
                return;
            }

            // 2) Attach to Didomi 'notice.shown' event if available
            let attached = false;
            if (window.Didomi && typeof window.Didomi.on === "function") {
                try {
                    window.Didomi.on('notice.shown', function () {
                        console.log("notice.shown event fired — attempting inject.");
                        injectDisagreeButton();
                    });
                    attached = true;
                    console.log("Attached to Didomi.on('notice.shown').");
                } catch (e) {
                    console.warn("Could not attach to Didomi.on('notice.shown'):", e);
                }
            } else {
                console.warn("Didomi.on not available at attach time.");
            }

            // 3) Fallback polling for buttons (covers cases where event was missed)
            // Poll every 300ms for up to 10s
            const maxAttempts = 33; // ~10s
            let attempts = 0;
            const poll = setInterval(() => {
                attempts++;
                if (injectDisagreeButton()) {
                    clearInterval(poll);
                    console.log("Injected via polling.");
                    return;
                }
                if (attempts >= maxAttempts) {
                    clearInterval(poll);
                    console.warn("Polling timed out — could not inject disagree button.");
                }
            }, 300);

        });
    });
</script>
<style>#didomi-host .didomi-popup-notice-optin-type, #didomi-host .didomi-popup-notice {max-width: 730px !important;}</style>
<!-- Didomi Disagree Button for US country -- end -->    <meta charset="utf-8">
    <meta http-equiv="Content-type" content="text/html; charset=utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">



<!-- BEGIN SEARCHNOINDEX -->
    <title>WSP | Global engineering and professional services firm </title>
    <meta name="description" content="WSP is a world-leading engineering and professional services consulting firm. Explore our expertise in designing sustainable solutions across various sectors. " />


<!-- END SEARCHNOINDEX -->
<meta name="generator" content="Sitecore" />
<meta name="creation_date" content="12/10/2024 8:59:58 AM" />
<meta name="last-modified" content="1/12/2026 4:58:35 PM" />
<meta name="revised" content="1/12/2026 4:58:35 PM" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png?v=rM30rJxA9X">
<link rel="icon" type="image/png" href="/favicon-32x32.png?v=rM30rJxA9X" sizes="32x32">
<link rel="icon" type="image/png" href="/favicon-16x16.png?v=rM30rJxA9X" sizes="16x16">
<link rel="manifest" href="/manifest.json?v=rM30rJxA9X">
<link rel="mask-icon" href="/safari-pinned-tab.svg?v=rM30rJxA9X" color="#5bbad5">
<link rel="shortcut icon" href="/favicon.ico?v=rM30rJxA9X">
<meta name="theme-color" content="#ffffff">





<meta name="facebook-domain-verification" content="0yydjp6srrswfytn1ni9g5dmi6u9vt">

<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@wsp" />
<meta name="twitter:title" content="WSP | Global engineering and professional services firm" />
<meta name="twitter:description" content="WSP is a world-leading engineering and professional services consulting firm. Explore our expertise in designing sustainable solutions across various sectors. " />
<meta name="twitter:image" content="https://www.wsp.com/-/media/home/global/image/2025/og-homepage-2025.jpg" />
<meta name="twitter:url" content="https://www.wsp.com/en-us/" />
<!-- End Twitter Card -->
<!-- Open Graph -->
<meta property="og:type" content="Article" />
<meta property="og:site_name" content="WSP" />
<meta property="og:title" content="WSP | Global engineering and professional services firm" />
<meta property="og:image" content="https://www.wsp.com/-/media/home/global/image/2025/og-homepage-2025.jpg"  />
<meta property="og:image:secure_url" content="https://www.wsp.com/-/media/home/global/image/2025/og-homepage-2025.jpg"  />

<meta property="og:image:alt" content="WSP | Global engineering and professional services firm" />
<meta property="og:url" content="https://www.wsp.com/en-us/" />
<meta property="og:description" content="WSP is a world-leading engineering and professional services consulting firm. Explore our expertise in designing sustainable solutions across various sectors. " />
<!-- End Open Graph -->
                <link rel="alternate" hreflang="da-dk" href="https://www.wsp.com/da-dk/">
                <link rel="alternate" hreflang="de-ch" href="https://www.wsp.com/de-ch/">
                <link rel="alternate" hreflang="de-de" href="https://www.wsp.com/de-de/">
                <link rel="alternate" hreflang="en-au" href="https://www.wsp.com/en-au/">
                <link rel="alternate" hreflang="en-ca" href="https://www.wsp.com/en-ca/">
                <link rel="alternate" hreflang="en-cn" href="https://www.wsp.com/en-cn/">
                <link rel="alternate" hreflang="en-gb" href="https://www.wsp.com/en-gb/">
                <link rel="alternate" hreflang="x-default" href="https://www.wsp.com/en-gl/">
                <link rel="alternate" hreflang="en" href="https://www.wsp.com/en-gl/">
                <link rel="alternate" hreflang="en-hk" href="https://www.wsp.com/en-hk/">
                <link rel="alternate" hreflang="en-id" href="https://www.wsp.com/en-id/">
                <link rel="alternate" hreflang="en-kr" href="https://www.wsp.com/en-kr/">
                <link rel="alternate" hreflang="en-my" href="https://www.wsp.com/en-my/">
                <link rel="alternate" hreflang="en-nz" href="https://www.wsp.com/en-nz/">
                <link rel="alternate" hreflang="en-ph" href="https://www.wsp.com/en-ph/">
                <link rel="alternate" hreflang="en-sg" href="https://www.wsp.com/en-sg/">
                <link rel="alternate" hreflang="en-th" href="https://www.wsp.com/en-th/">
                <link rel="alternate" hreflang="en-us" href="https://www.wsp.com/en-us/">
                <link rel="alternate" hreflang="en-za" href="https://www.wsp.com/en-za/">
                <link rel="alternate" hreflang="es-cl" href="https://www.wsp.com/es-cl/">
                <link rel="alternate" hreflang="es-co" href="https://www.wsp.com/es-co/">
                <link rel="alternate" hreflang="es-es" href="https://www.wsp.com/es-es/">
                <link rel="alternate" hreflang="es-mx" href="https://www.wsp.com/es-mx/">
                <link rel="alternate" hreflang="es-pa" href="https://www.wsp.com/es-pa/">
                <link rel="alternate" hreflang="es-pe" href="https://www.wsp.com/es-pe/">
                <link rel="alternate" hreflang="fi-fi" href="https://www.wsp.com/fi-fi/">
                <link rel="alternate" hreflang="fr-ca" href="https://www.wsp.com/fr-ca/">
                <link rel="alternate" hreflang="fr-ch" href="https://www.wsp.com/fr-ch/">
                <link rel="alternate" hreflang="fr-fr" href="https://www.wsp.com/fr-fr/">
                <link rel="alternate" hreflang="fr" href="https://www.wsp.com/fr-gl/">
                <link rel="alternate" hreflang="it-it" href="https://www.wsp.com/it-it/">
                <link rel="alternate" hreflang="ko-kr" href="https://www.wsp.com/ko-kr/">
                <link rel="alternate" hreflang="nb-no" href="https://www.wsp.com/nb-no/">
                <link rel="alternate" hreflang="nl-nl" href="https://www.wsp.com/nl-nl/">
                <link rel="alternate" hreflang="pl-pl" href="https://www.wsp.com/pl-pl/">
                <link rel="alternate" hreflang="pt-br" href="https://www.wsp.com/pt-br/">
                <link rel="alternate" hreflang="sv-se" href="https://www.wsp.com/sv-se/">
                <link rel="alternate" hreflang="zh-cn" href="https://www.wsp.com/zh-cn/">
            <link rel="canonical" href="https://www.wsp.com/en-us/">
        <link rel="alternate" hreflang="en-kw" href="https://www.wsp.com/en-me">
        <link rel="alternate" hreflang="en-qa" href="https://www.wsp.com/en-me">
        <link rel="alternate" hreflang="en-om" href="https://www.wsp.com/en-me">
        <link rel="alternate" hreflang="en-ae" href="https://www.wsp.com/en-me">
        <link rel="alternate" hreflang="en-sa" href="https://www.wsp.com/en-me">
        <link rel="alternate" hreflang="es-mx" href="https://www.wsp.com/es-la">
        <link rel="alternate" hreflang="es-pa" href="https://www.wsp.com/es-la">
        <link rel="alternate" hreflang="es-co" href="https://www.wsp.com/es-la">
        <link rel="alternate" hreflang="es-pe" href="https://www.wsp.com/es-la">
        <link rel="alternate" hreflang="es-cl" href="https://www.wsp.com/es-la">
     <link rel="alternate" hreflang="en-in" href="https://www.wsp.com/en-gl">
     <link rel="alternate" hreflang="en-ro" href="https://www.wsp.com/en-gl">

    

<!-- Coveo CSS -->
<link rel="stylesheet" href="https://static.cloud.coveo.com/searchui/v2.10089/css/CoveoFullSearch.min.css" />
<link rel="stylesheet" href="https://static.cloud.coveo.com/coveoforsitecore/ui/v0.55.8/css/CoveoForSitecore.css" />
    <!-- Latest compiled and minified JavaScript -->
    <script src="/scripts/Sitecore.Foundation.Frameworks.min.js"></script>

    <link rel="stylesheet" href="/styles/vendor.min.css">
<link rel="stylesheet" href="/styles/WSPGlobalv47.min.css">

    
</head>
<body class="header-static "><a href="https://www.wsp.com/cdn-cgi/content?id=U8BsUG_28Dh4nzTD4AY5mtNXqBxdK5hV7gCNYcUTGOs-1769654541-1.1.1.1-teHqFu3TiAzii_weqjhriXebZSqYN5wA6rtSAhvmy6c" aria-hidden="true" rel="nofollow noopener" style="display: none !important; visibility: hidden !important"></a>
    <!-- BEGIN SEARCHNOINDEX -->
    

<!-- Google Tag Manager (noscript) -->
<!--Prod-->
<noscript>
    <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5TWWLBD"
            height="0" width="0" style="display: none; visibility: hidden">
    </iframe>
</noscript>
<!--UAT-->

<!-- End Google Tag Manager (noscript) -->
<!--Provide a site name to Google Search-->
<div itemscope itemtype="https://schema.org/WebSite">
    <meta itemprop="url" content="https://www.wsp.com/" />
    <meta itemprop="name" content="WSP" />
    <meta itemprop="alternateName" content="WSP" />
</div>
<!--End Provide a site name to Google Search-->
    <a href="#content" class="focusOnMyanchor sr-only" title="Skip to content"> Skip to content </a>
    <div id="main-container">
        <header class="main-header bg-dark-header" role="rowheader">
            
            <div class="container-fluid  big-padding">
    <div class="mobile-nav clearfix">
        

<style>.a-wsp-logo {display:block;fill:#ff372f; height:28px;width:auto}@media (min-width:1200px){.a-wsp-logo{height:40px}}.main-header.bg-dark-header{background-color: #141212;}.main-header.bg-dark-header .big-padding .desktop-header .main-nav .mn__list li a.mn__link.level-0,.main-footer.bg-dark-footer .mf__link {color: #fff;}</style>
<a class=" logo" tabindex="0" aria-label="WSP Logo" title="WSP" href="/en-us/"><svg xmlns="http://www.w3.org/2000/svg" class="a-wsp-logo"  viewBox="0 0 57.372 27.285"><title id="title" lang="en">WSP</title><defs></defs><path d="M85.453,25.95a11.223,11.223,0,0,0-2.613-7.373h4.3a12.35,12.35,0,0,1,2.283,7.373v.011a12.358,12.358,0,0,1-2.291,7.385h-4.3a11.218,11.218,0,0,0,2.621-7.385Z" transform="translate(-32.048 -18.577)" /><path d="M3.968,0H0L5.445,14.766H7.554l.929-2.52Z" transform="translate(0 0)" /><path d="M17.419,0H13.451L18.9,14.766H21l.929-2.52Z" transform="translate(-2.807 0)" /><path d="M55.761,27.285V0h-3.8V27.285Z" transform="translate(-10.843 0)" /><path d="M47.912,20.767a6.507,6.507,0,0,1,.512-2.19H51.9a3.188,3.188,0,0,0-.252,2.429,3.638,3.638,0,0,0,1.622,1.924,23.1,23.1,0,0,0,2.871,1.331,11.618,11.618,0,0,1,2.8,1.673A5.551,5.551,0,0,1,61,29.842c.015.192.021.385.021.579a6.516,6.516,0,0,1-.61,2.92H56.846a3.977,3.977,0,0,0,.577-2.16c-.125-1.86-2.4-2.878-4.3-3.723-.29-.134-.575-.255-.847-.383a10.864,10.864,0,0,1-2.37-1.433,5.031,5.031,0,0,1-1.641-2.124,6.146,6.146,0,0,1-.372-2.485C47.9,20.944,47.9,20.855,47.912,20.767Z" transform="translate(-24.756 -18.577)" /></svg></a>


        <div class="hamburger-button">
            <button type="button" class="hb__btn" aria-expanded="false">
                <span class="sr-only">
                    Toggle navigation 
                </span>
                <style>
                    .a-close0-icon{fill:none;stroke:#1e252b;stroke-width:2px;}
                    .a-close1-icon{fill:none;stroke:#1e252b;stroke-width:2px;}
                    .a-close0-icon:hover,.a-close1-icon:hover{stroke:#ff373f;}
                </style>
                <?xml version="1.0" encoding="utf-8" ?>
                <span class="menu-mob-open">
                    <svg class="a-close0-icon" xmlns="http://www.w3.org/2000/svg" width="15.681" height="16.047" viewBox="0 0 15.681 16.047"><defs></defs><g transform="translate(0 1)"><path d="M0,0H15.681" /><path d="M0,0H15.681" transform="translate(0 14.047)" /><path d="M0,0H15.681" transform="translate(0 6.654)" /></g></svg>
                </span>
                <span class="menu-mob-close"><svg class="a-close1-icon" xmlns="http://www.w3.org/2000/svg" width="16.39" height="16.39" viewBox="0 0 16.39 16.39"><defs></defs><g transform="translate(0.707 0.707)"><line x2="14.976" y2="14.976" /><line x1="14.976" y2="14.976" /></g></svg></span>
            </button>
        </div>
        
<div class="main-search">
    <button class="ms__btn" type="button">
        <div class="ms__search-icon">
            <style>
                .a-search2-icon{fill:none;stroke:#141212;stroke-miterlimit:10;stroke-width:2px;}
                .a-search2-mob-icon{fill:none;stroke:#141212;stroke-miterlimit:10;stroke-width:2px;}
                .a-search2-icon:hover{stroke:#ff372f;}
                .a-search2-mob-icon:hover{stroke:#ff373f !important;}
            </style>
            <svg xmlns="http://www.w3.org/2000/svg" class="a-search2-icon hidden-xs hidden-sm hidden-md" width="21.266" height="20.877" viewBox="0 0 21.266 20.877"><g id="icn_search" data-name="icn search" transform="translate(0.75 0.75)"><circle id="Ellipse_1" data-name="Ellipse 1" cx="7.807" cy="7.807" r="7.807" fill="none" stroke="" stroke-width="1.5"/><line id="Ligne_1" data-name="Ligne 1" x2="6.469" y2="6.469" transform="translate(13.516 13.128)" fill="none" stroke="" stroke-width="1.5"/></g></svg>
            <svg xmlns="http://www.w3.org/2000/svg" class="a-search2-mob-icon hidden-lg" width="16.698" height="16.406" viewBox="0 0 16.698 16.406"><g id="icn-search-mobile" transform="translate(1 1)"><circle id="Ellipse_1" data-name="Ellipse 1" cx="5.856" cy="5.856" r="5.856" fill="none" stroke="" stroke-width="2"/><line id="Ligne_1" data-name="Ligne 1" x2="4.852" y2="4.852" transform="translate(10.138 9.847)" fill="none" stroke="" stroke-width="2"/></g></svg>            
            <span class="sr-only">Click to open search </span>
        </div>
        <div class="ms__close-icon">
            <span class="sr-only">
                Click to close search
            </span>
            <style>                
                .a-close-mob-nw-icon{fill:none;stroke:#141212;stroke-width:2px;}
                .a-close-mob-nw-icon:hover{stroke:#ff373f;}
            </style>            
            <svg class="a-close-mob-nw-icon hidden-lg" xmlns="http://www.w3.org/2000/svg" width="16.39" height="16.39" viewBox="0 0 16.39 16.39"><g  transform="translate(0.707 0.707)"><line id="Ligne_75" data-name="Ligne 75" x2="14.976" y2="14.976" fill="none" stroke="" stroke-width="2"/><line id="Ligne_76" data-name="Ligne 76" x1="14.976" y2="14.976" fill="none" stroke="" stroke-width="2"/></g></svg>
            
        </div>
    </button>
</div>
<style></style>

    </div>

    <div class="desktop-header">
        <div class="mh__nav-wrapper clearfix">
            <!-- logo -->
            

<style>.a-wsp-logo {display:block;fill:#ff372f; height:28px;width:auto}@media (min-width:1200px){.a-wsp-logo{height:40px}}.main-header.bg-dark-header{background-color: #141212;}.main-header.bg-dark-header .big-padding .desktop-header .main-nav .mn__list li a.mn__link.level-0,.main-footer.bg-dark-footer .mf__link {color: #fff;}</style>
<a class=" logo" tabindex="0" aria-label="WSP Logo" title="WSP" href="/en-us/"><svg xmlns="http://www.w3.org/2000/svg" class="a-wsp-logo"  viewBox="0 0 57.372 27.285"><title id="title" lang="en">WSP</title><defs></defs><path d="M85.453,25.95a11.223,11.223,0,0,0-2.613-7.373h4.3a12.35,12.35,0,0,1,2.283,7.373v.011a12.358,12.358,0,0,1-2.291,7.385h-4.3a11.218,11.218,0,0,0,2.621-7.385Z" transform="translate(-32.048 -18.577)" /><path d="M3.968,0H0L5.445,14.766H7.554l.929-2.52Z" transform="translate(0 0)" /><path d="M17.419,0H13.451L18.9,14.766H21l.929-2.52Z" transform="translate(-2.807 0)" /><path d="M55.761,27.285V0h-3.8V27.285Z" transform="translate(-10.843 0)" /><path d="M47.912,20.767a6.507,6.507,0,0,1,.512-2.19H51.9a3.188,3.188,0,0,0-.252,2.429,3.638,3.638,0,0,0,1.622,1.924,23.1,23.1,0,0,0,2.871,1.331,11.618,11.618,0,0,1,2.8,1.673A5.551,5.551,0,0,1,61,29.842c.015.192.021.385.021.579a6.516,6.516,0,0,1-.61,2.92H56.846a3.977,3.977,0,0,0,.577-2.16c-.125-1.86-2.4-2.878-4.3-3.723-.29-.134-.575-.255-.847-.383a10.864,10.864,0,0,1-2.37-1.433,5.031,5.031,0,0,1-1.641-2.124,6.146,6.146,0,0,1-.372-2.485C47.9,20.944,47.9,20.855,47.912,20.767Z" transform="translate(-24.756 -18.577)" /></svg></a>

            <!-- / logo -->

            <div class="clearfix nav-container">
                <!-- main-nav -->
                

<!-- Desktop Megamenu View -->
<nav class="main-nav hidden-xs hidden-sm hidden-md">
        <ul aria-label="Primary Menu" class=" mn__list level-0">
    <li role="none" class="mn__item level-0">

        <a href="/en-us/who-we-are" aria-label="Who We Are" class="mn__link level-0 targetIsHidden " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Who We Are','eventLabel':'/en-us/who-we-are'}" data-toggle-next-element="" target="" tabindex="0" title="Who We Are">
            Who We Are
        </a>
<div aria-hidden="true" role="menu" class="sub-nav sub-nav-box level-0 isHidden">

    <div class="sub-nav--box-row row">

        <div class="col-lg-3 sub-nav--box-1">
            <div class="cta-box">
                <div class="topnav-title-h2">We are the home of ambitious, passionate, and innovative engineering experts, scientists and advisors. </div>
                                
                                <p class=""></p>
                            </div>
            </div>
        <div class="col-lg-3 sub-nav--box-2">
<div class="category-link">
    <a href="/en-us/who-we-are" tabindex="-1" title="Who We Are" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Who We Are','eventLabel':'/en-us/who-we-are'}">
        Who We Are
    </a>
</div>
                            <ul class="sub-category-link level-1 ">
    <li class="col-xs-12 level-1">
        <a id="251B7A02-9923-48FB-84DB-4E0F766BEBD0" href="/en-us/who-we-are/our-history" title="Our history" onclick="" class="level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Our history','eventLabel':'/en-us/who-we-are/our-history'}" target="" tabindex="-1">Our history</a>
    </li>    <li class="col-xs-12 level-1">
        <a id="3FCD2129-D147-4EC5-A0E4-9986D3AC78A5" href="/en-us/hubs/future-ready" title="Future Ready" onclick="" class="level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Future Ready','eventLabel':'/en-us/hubs/future-ready'}" target="" tabindex="-1">Future Ready</a>
    </li>    <li class="col-xs-12 level-1">
        <a id="9DD923ED-10BD-48E3-BB9F-3F34B35FE09F" href="/en-us/who-we-are/corporate-responsibility" title="Corporate responsibility" onclick="" class=" hasSubitems level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Corporate responsibility','eventLabel':'/en-us/who-we-are/corporate-responsibility'}" target="" tabindex="-1">Corporate responsibility</a>
    </li>    <li class="col-xs-12 level-1">
        <a id="4D51D1B0-6568-4B2A-9521-AC7D50E6B566" href="/en-us/who-we-are/leadership-team" title="U.S. leadership" onclick="" class="level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'U.S. leadership','eventLabel':'/en-us/who-we-are/leadership-team'}" target="" tabindex="-1">U.S. leadership</a>
    </li>    <li class="col-xs-12 level-1">
        <a id="2EA9B8DF-70BB-41F6-B6CF-5D15BE79B6DC" href="/en-us/our-impact" title="Our impact" onclick="" class="level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Our impact','eventLabel':'/en-us/our-impact'}" target="" tabindex="-1">Our impact</a>
    </li>                            </ul>        </div>
        <div class="col-lg-6 sub-nav--box-3">
            <button type="button" class="top-menu-close-btn" tabindex="-1">
                <span class="sr-only">Close</span>
                <svg xmlns="http://www.w3.org/2000/svg" class="menu-close-svg" width="19.512" height="19.512" viewBox="0 0 19.512 19.512"><defs></defs><g transform="translate(18.982 0.53) rotate(90)"><g transform="translate(18.451) rotate(90)"><line class="menu-close-svg-lines" x2="18.451" y2="18.451" /><line class="menu-close-svg-lines" x1="18.451" y2="18.451" /></g></g></svg>
            </button>
    <div id="Sub-9DD923ED-10BD-48E3-BB9F-3F34B35FE09F" class="hidden">

        <div class="category-link">
            <a href="/en-us/who-we-are/corporate-responsibility" title="Corporate responsibility" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Corporate responsibility','eventLabel':'/en-us/who-we-are/corporate-responsibility'}">
                Corporate responsibility
            </a>
        </div>
<ul class="row sub-category-link rec6">
        <li class="col-xs-12">
        <a href="/en-us/who-we-are/corporate-responsibility/communities" title="Communities" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Communities','eventLabel':'/en-us/who-we-are/corporate-responsibility/communities'}" target="" tabindex="-1">Communities</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/investors/corporate-governance" title="Corporate governance" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Corporate governance','eventLabel':'/en-us/investors/corporate-governance'}" target="" tabindex="-1">Corporate governance</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/who-we-are/corporate-responsibility/ethics-integrity" title="Ethics and integrity" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Ethics and integrity','eventLabel':'/en-us/who-we-are/corporate-responsibility/ethics-integrity'}" target="" tabindex="-1">Ethics and integrity</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/who-we-are/corporate-responsibility/health-safety" title="Health and safety" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Health and safety','eventLabel':'/en-us/who-we-are/corporate-responsibility/health-safety'}" target="" tabindex="-1">Health and safety</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/who-we-are/corporate-responsibility/inclusion-and-belonging" title="Inclusion and belonging" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Inclusion and belonging','eventLabel':'/en-us/who-we-are/corporate-responsibility/inclusion-and-belonging'}" target="" tabindex="-1">Inclusion and belonging</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/who-we-are/corporate-responsibility/sustainability" title="Sustainability" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Sustainability','eventLabel':'/en-us/who-we-are/corporate-responsibility/sustainability'}" target="" tabindex="-1">Sustainability</a>
    </li>
</ul>    </div>
            <div id="ft-cnt-C8483456-9B74-4A24-80DB-1185F47FD3CF" class="feat-content col-lg-6">
<div class="category-link">
    Featured content
</div>             <div class="feat-content-box center-alignment">
                <a class="box-link" title="Pioneering change for empowered growth " tabindex="-1" href="/en-us/who-we-are/global-strategic-plan" data-wspdatalayer="{'event':'interaction','eventCategory':'featured content','eventAction':'global-strategic-plan','eventLabel':'/en-us/who-we-are/global-strategic-plan'}">
            <div class="thumbnail">
                
                <img src="/-/media/who-we-are/global/image/2025/strat-plan/thn-strat-plan-2025.jpg" class="img-responsive" alt="thn-strat-plan-2025" disablewebedit="False">
                
            </div>
                    <div class="caption">
                        
                        <div class="topnav-title-h2">Pioneering change for empowered growth </div>
                        <div class="text-hyphen"><p>As world shapers, our 2025-2027 Global Strategic Action Plan captures our…</p></div>
                    </div>
                </a>
            </div>            </div>
        </div>
    </div>
</div>    </li>    <li role="none" class="mn__item level-0">

        <a href="/en-us/what-we-do" aria-label="What we do" class="mn__link level-0 targetIsHidden " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'What we do','eventLabel':'/en-us/what-we-do'}" data-toggle-next-element="" target="" tabindex="0" title="What we do">
            What we do
        </a>
<div aria-hidden="true" role="menu" class="sub-nav sub-nav-box level-0 isHidden">

    <div class="sub-nav--box-row row">

        <div class="col-lg-3 sub-nav--box-1">
            <div class="cta-box">
                <div class="topnav-title-h2">We work together with clients to plan, design, create and deliver innovative projects that shape the world.</div>
                                
                                <p class=""></p>
                            </div>
            <div class=" ssp-box">
                <hr />
            <p class="title">View All</p>                            <ul class="">
            <li>
                <a href="/en-us/sectors" tabindex="-1" class="" target="" title="Sectors" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Sectors','eventLabel':'/en-us/sectors'}" datalayer="[{'site':'wsp','region':'united states','siteMenuLevel1':'What we do','siteMenuLevel2':'none','siteMenuLevel3':'none','pageType':'Sectors Repository','pageName':'sectors','pageLanguage':'english'}]">
Sectors                </a>
            </li>
            <li>
                <a href="/en-us/services" tabindex="-1" class="" target="" title="Services" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Services','eventLabel':'/en-us/services'}" datalayer="[{'site':'wsp','region':'united states','siteMenuLevel1':'What we do','siteMenuLevel2':'none','siteMenuLevel3':'none','pageType':'Services Repository','pageName':'services','pageLanguage':'english'}]">
Services                </a>
            </li>
            <li>
                <a href="/en-us/projects" tabindex="-1" class="" target="" title="Projects" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Projects','eventLabel':'/en-us/projects'}" datalayer="[{'site':'wsp','region':'united states','siteMenuLevel1':'What we do','siteMenuLevel2':'none','siteMenuLevel3':'none','pageType':'Projects Repository','pageName':'projects','pageLanguage':'english'}]">
Projects                </a>
            </li>
            </ul>                <div class="clear"></div>
            </div>            </div>
        <div class="col-lg-3 sub-nav--box-2">
<div class="category-link">
    <a href="/en-us/what-we-do" tabindex="-1" title="What we do" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'What we do','eventLabel':'/en-us/what-we-do'}">
        What we do
    </a>
</div>
                            <ul class="sub-category-link level-1 ">
    <li class="col-xs-12 level-1">
        <a id="6C65DD12-A5C4-42AA-AFA1-6B9640913CBA" href="/en-us/hubs/property-and-buildings" title="Property and Buildings" onclick="" class=" hasSubitems level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Property and Buildings','eventLabel':'/en-us/hubs/property-and-buildings'}" target="" tabindex="-1">Property and Buildings</a>
    </li>    <li class="col-xs-12 level-1">
        <a id="86838364-05A0-420C-A1F7-F5A0ACDEDFD4" href="/en-us/hubs/transportation" title="Transportation" onclick="" class=" hasSubitems level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Transportation','eventLabel':'/en-us/hubs/transportation'}" target="" tabindex="-1">Transportation</a>
    </li>    <li class="col-xs-12 level-1">
        <a id="B0A60FE3-EA23-45EF-AB2C-D89475DEB208" href="/en-us/hubs/water" title="Water" onclick="" class=" hasSubitems level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Water','eventLabel':'/en-us/hubs/water'}" target="" tabindex="-1">Water</a>
    </li>    <li class="col-xs-12 level-1">
        <a id="3C01A45E-5223-46B2-8C25-F40EFABE73C2" href="/en-us/hubs/energy-and-resources" title="Energy and Resources" onclick="" class=" hasSubitems level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Energy and Resources','eventLabel':'/en-us/hubs/energy-and-resources'}" target="" tabindex="-1">Energy and Resources</a>
    </li>    <li class="col-xs-12 level-1">
        <a id="19479035-BFD1-4838-96D1-3B20E40793F2" href="/en-us/hubs/climate-resilience-and-sustainability" title="Climate, Resilience &amp; Sustainability" onclick="" class=" hasSubitems level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Climate, Resilience & Sustainability','eventLabel':'/en-us/hubs/climate-resilience-and-sustainability'}" target="" tabindex="-1">Climate, Resilience &amp; Sustainability</a>
    </li>    <li class="col-xs-12 level-1">
        <a id="8FA99049-7565-402B-968F-13959768BBC6" href="/en-us/hubs/federal-programs" title="Federal Programs" onclick="" class=" hasSubitems level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Federal Programs','eventLabel':'/en-us/hubs/federal-programs'}" target="" tabindex="-1">Federal Programs</a>
    </li>    <li class="col-xs-12 level-1">
        <a id="B0BE6E3C-5AEF-4EED-9E45-A6170D22A478" href="/en-us/hubs/earth-and-environment" title="Earth and Environment" onclick="" class=" hasSubitems level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Earth and Environment','eventLabel':'/en-us/hubs/earth-and-environment'}" target="" tabindex="-1">Earth and Environment</a>
    </li>    <li class="col-xs-12 level-1">
        <a id="18D04D85-6513-488B-A2A7-B205FBF90DB5" href="/en-us/hubs/advisory-services" title="Advisory and Planning" onclick="" class=" hasSubitems level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Advisory and Planning','eventLabel':'/en-us/hubs/advisory-services'}" target="" tabindex="-1">Advisory and Planning</a>
    </li>                            </ul>        </div>
        <div class="col-lg-6 sub-nav--box-3">
            <button type="button" class="top-menu-close-btn" tabindex="-1">
                <span class="sr-only">Close</span>
                <svg xmlns="http://www.w3.org/2000/svg" class="menu-close-svg" width="19.512" height="19.512" viewBox="0 0 19.512 19.512"><defs></defs><g transform="translate(18.982 0.53) rotate(90)"><g transform="translate(18.451) rotate(90)"><line class="menu-close-svg-lines" x2="18.451" y2="18.451" /><line class="menu-close-svg-lines" x1="18.451" y2="18.451" /></g></g></svg>
            </button>
    <div id="Sub-6C65DD12-A5C4-42AA-AFA1-6B9640913CBA" class="hidden">

        <div class="category-link">
            <a href="/en-us/hubs/property-and-buildings" title="Property and Buildings" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Property and Buildings','eventLabel':'/en-us/hubs/property-and-buildings'}">
                Property and Buildings
            </a>
        </div>
<ul class="row sub-category-link rec20">
        <li class="col-xs-12">
        <a href="/en-us/services/acoustics-and-vibration" title="Acoustics and Vibration" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Acoustics and Vibration','eventLabel':'/en-us/services/acoustics-and-vibration'}" target="" tabindex="-1">Acoustics and Vibration</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/building-enclosure" title="Building Enclosures" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Building Enclosures','eventLabel':'/en-us/services/building-enclosure'}" target="" tabindex="-1">Building Enclosures</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/building-technology-systems" title="Building Technology Systems" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Building Technology Systems','eventLabel':'/en-us/services/building-technology-systems'}" target="" tabindex="-1">Building Technology Systems</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/built-ecology" title="Built Ecology" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Built Ecology','eventLabel':'/en-us/services/built-ecology'}" target="" tabindex="-1">Built Ecology</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/commercial-and-mixed-use" title="Commercial" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Commercial','eventLabel':'/en-us/sectors/commercial-and-mixed-use'}" target="" tabindex="-1">Commercial</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/commissioning" title="Commissioning" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Commissioning','eventLabel':'/en-us/services/commissioning'}" target="" tabindex="-1">Commissioning</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/data-centers" title="Data Centers" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Data Centers','eventLabel':'/en-us/sectors/data-centers'}" target="" tabindex="-1">Data Centers</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/hubs/existing-buildings" title="Existing Buildings" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Existing Buildings','eventLabel':'/en-us/hubs/existing-buildings'}" target="" tabindex="-1">Existing Buildings</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/hubs/healthcare" title="Healthcare" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Healthcare','eventLabel':'/en-us/hubs/healthcare'}" target="" tabindex="-1">Healthcare</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/high-rise" title="High-Rise" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'High-Rise','eventLabel':'/en-us/sectors/high-rise'}" target="" tabindex="-1">High-Rise</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/hospitality" title="Hospitality" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Hospitality','eventLabel':'/en-us/sectors/hospitality'}" target="" tabindex="-1">Hospitality</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/hubs/industrial-and-advanced-manufacturing" title="Industrial and Advanced Manufacturing" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Industrial and Advanced Manufacturing','eventLabel':'/en-us/hubs/industrial-and-advanced-manufacturing'}" target="" tabindex="-1">Industrial and Advanced Manufacturing</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/lighting-design" title="Lighting Design" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Lighting Design','eventLabel':'/en-us/services/lighting-design'}" target="" tabindex="-1">Lighting Design</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/market-innovation-and-advisory" title="Market Innovation &amp; Advisory Services" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Market Innovation & Advisory Services','eventLabel':'/en-us/services/market-innovation-and-advisory'}" target="" tabindex="-1">Market Innovation &amp; Advisory Services</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/mechanical-electrical-and-plumbing" title="MEP Engineering" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'MEP Engineering','eventLabel':'/en-us/services/mechanical-electrical-and-plumbing'}" target="" tabindex="-1">MEP Engineering</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/hubs/program-and-construction-management" title="Program and Construction Management" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Program and Construction Management','eventLabel':'/en-us/hubs/program-and-construction-management'}" target="" tabindex="-1">Program and Construction Management</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/residential" title="Residential" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Residential','eventLabel':'/en-us/sectors/residential'}" target="" tabindex="-1">Residential</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/science" title="Science &amp; Technology" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Science & Technology','eventLabel':'/en-us/sectors/science'}" target="" tabindex="-1">Science &amp; Technology</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/structural-engineering" title="Structural Engineering" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Structural Engineering','eventLabel':'/en-us/services/structural-engineering'}" target="" tabindex="-1">Structural Engineering</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/hubs/timber" title="Timber" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Timber','eventLabel':'/en-us/hubs/timber'}" target="" tabindex="-1">Timber</a>
    </li>
</ul>    </div>    <div id="Sub-86838364-05A0-420C-A1F7-F5A0ACDEDFD4" class="hidden">

        <div class="category-link">
            <a href="/en-us/hubs/transportation" title="Transportation" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Transportation','eventLabel':'/en-us/hubs/transportation'}">
                Transportation
            </a>
        </div>
<ul class="row sub-category-link rec10">
        <li class="col-xs-12">
        <a href="/en-us/services/alternative-delivery" title="Alternative Delivery" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Alternative Delivery','eventLabel':'/en-us/services/alternative-delivery'}" target="" tabindex="-1">Alternative Delivery</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/hubs/aviation" title="Aviation" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Aviation','eventLabel':'/en-us/hubs/aviation'}" target="" tabindex="-1">Aviation</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/hubs/highways-and-bridges" title="Highways and Bridges" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Highways and Bridges','eventLabel':'/en-us/hubs/highways-and-bridges'}" target="" tabindex="-1">Highways and Bridges</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/hubs/maritime" title="Maritime" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Maritime','eventLabel':'/en-us/hubs/maritime'}" target="" tabindex="-1">Maritime</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/mobility-operations" title="Mobility Operations" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Mobility Operations','eventLabel':'/en-us/services/mobility-operations'}" target="" tabindex="-1">Mobility Operations</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/hubs/program-and-construction-management" title="Program and Construction Management" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Program and Construction Management','eventLabel':'/en-us/hubs/program-and-construction-management'}" target="" tabindex="-1">Program and Construction Management</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/hubs/transit-and-rail" title="Rail and Transit" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Rail and Transit','eventLabel':'/en-us/hubs/transit-and-rail'}" target="" tabindex="-1">Rail and Transit</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/road-usage-charging" title="Road Usage Charging" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Road Usage Charging','eventLabel':'/en-us/services/road-usage-charging'}" target="" tabindex="-1">Road Usage Charging</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/tolling" title="Tolling" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Tolling','eventLabel':'/en-us/services/tolling'}" target="" tabindex="-1">Tolling</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/hubs/tunnels" title="Tunnels" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Tunnels','eventLabel':'/en-us/hubs/tunnels'}" target="" tabindex="-1">Tunnels</a>
    </li>
</ul>    </div>    <div id="Sub-B0A60FE3-EA23-45EF-AB2C-D89475DEB208" class="hidden">

        <div class="category-link">
            <a href="/en-us/hubs/water" title="Water" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Water','eventLabel':'/en-us/hubs/water'}">
                Water
            </a>
        </div>
<ul class="row sub-category-link rec10">
        <li class="col-xs-12">
        <a href="/en-us/services/asset-management" title="Asset Management" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Asset Management','eventLabel':'/en-us/services/asset-management'}" target="" tabindex="-1">Asset Management</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/civil-works" title="Civil Works" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Civil Works','eventLabel':'/en-us/services/civil-works'}" target="" tabindex="-1">Civil Works</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/coastal-engineering" title="Coastal Engineering" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Coastal Engineering','eventLabel':'/en-us/services/coastal-engineering'}" target="" tabindex="-1">Coastal Engineering</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/drinking-water" title="Drinking Water" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Drinking Water','eventLabel':'/en-us/sectors/drinking-water'}" target="" tabindex="-1">Drinking Water</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/flood-control-and-hydraulic-structures" title="Flood Control &amp; Hydraulic Structures" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Flood Control & Hydraulic Structures','eventLabel':'/en-us/services/flood-control-and-hydraulic-structures'}" target="" tabindex="-1">Flood Control &amp; Hydraulic Structures</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/hydraulic-and-hydrological-analysis" title="Hydraulic &amp; Hydrologic Analysis" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Hydraulic & Hydrologic Analysis','eventLabel':'/en-us/services/hydraulic-and-hydrological-analysis'}" target="" tabindex="-1">Hydraulic &amp; Hydrologic Analysis</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/hydrogeology" title="Hydrogeology" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Hydrogeology','eventLabel':'/en-us/services/hydrogeology'}" target="" tabindex="-1">Hydrogeology</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/industrial-water-and-wastewater-management" title="Industrial Water &amp; Wastewater Management" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Industrial Water & Wastewater Management','eventLabel':'/en-us/sectors/industrial-water-and-wastewater-management'}" target="" tabindex="-1">Industrial Water &amp; Wastewater Management</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/hubs/program-and-construction-management" title="Program and Construction Management" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Program and Construction Management','eventLabel':'/en-us/hubs/program-and-construction-management'}" target="" tabindex="-1">Program and Construction Management</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/stormwater" title="Stormwater" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Stormwater','eventLabel':'/en-us/services/stormwater'}" target="" tabindex="-1">Stormwater</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/surface-water" title="Surface Water" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Surface Water','eventLabel':'/en-us/sectors/surface-water'}" target="" tabindex="-1">Surface Water</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/wastewater" title="Wastewater" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Wastewater','eventLabel':'/en-us/sectors/wastewater'}" target="" tabindex="-1">Wastewater</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/water-and-wastewater-treatment" title="Water &amp; Wastewater Treatment" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Water & Wastewater Treatment','eventLabel':'/en-us/services/water-and-wastewater-treatment'}" target="" tabindex="-1">Water &amp; Wastewater Treatment</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/water-conveyance-tunnels" title="Water Conveyance Tunnels" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Water Conveyance Tunnels','eventLabel':'/en-us/sectors/water-conveyance-tunnels'}" target="" tabindex="-1">Water Conveyance Tunnels</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/water-supply-and-distribution" title="Water Supply &amp; Distribution" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Water Supply & Distribution','eventLabel':'/en-us/services/water-supply-and-distribution'}" target="" tabindex="-1">Water Supply &amp; Distribution</a>
    </li>
</ul>    </div>    <div id="Sub-3C01A45E-5223-46B2-8C25-F40EFABE73C2" class="hidden">

        <div class="category-link">
            <a href="/en-us/hubs/energy-and-resources" title="Energy and Resources" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Energy and Resources','eventLabel':'/en-us/hubs/energy-and-resources'}">
                Energy and Resources
            </a>
        </div>
<ul class="row sub-category-link rec10">
        <li class="col-xs-12">
        <a href="/en-us/sectors/power-and-energy" title="Power and Energy" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Power and Energy','eventLabel':'/en-us/sectors/power-and-energy'}" target="" tabindex="-1">Power and Energy</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/power-generation" title=" Power Generation" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':' Power Generation','eventLabel':'/en-us/services/power-generation'}" target="" tabindex="-1"> Power Generation</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/power-planning-routing-and-permitting" title="Power Planning, Routing, Siting and Permitting" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Power Planning, Routing, Siting and Permitting','eventLabel':'/en-us/services/power-planning-routing-and-permitting'}" target="" tabindex="-1">Power Planning, Routing, Siting and Permitting</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/distributed-energy-and-electrification" title="Distributed Energy and Electrification" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Distributed Energy and Electrification','eventLabel':'/en-us/services/distributed-energy-and-electrification'}" target="" tabindex="-1">Distributed Energy and Electrification</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/energy-storage-facility-operations" title="Energy Storage Facility Operations" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Energy Storage Facility Operations','eventLabel':'/en-us/services/energy-storage-facility-operations'}" target="" tabindex="-1">Energy Storage Facility Operations</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/energy-surface-facilities" title="Energy Surface Facilities" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Energy Surface Facilities','eventLabel':'/en-us/services/energy-surface-facilities'}" target="" tabindex="-1">Energy Surface Facilities</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/hydrogen" title="Hydrogen" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Hydrogen','eventLabel':'/en-us/sectors/hydrogen'}" target="" tabindex="-1">Hydrogen</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/hydropower-and-dams" title="Hydropower and Dams" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Hydropower and Dams','eventLabel':'/en-us/sectors/hydropower-and-dams'}" target="" tabindex="-1">Hydropower and Dams</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/power-transmission-and-distribution" title="Power Transmission and Distribution" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Power Transmission and Distribution','eventLabel':'/en-us/services/power-transmission-and-distribution'}" target="" tabindex="-1">Power Transmission and Distribution</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/solar-energy" title="Solar Energy" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Solar Energy','eventLabel':'/en-us/sectors/solar-energy'}" target="" tabindex="-1">Solar Energy</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/storage-and-disposal-wells" title="Storage and Disposal Wells" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Storage and Disposal Wells','eventLabel':'/en-us/services/storage-and-disposal-wells'}" target="" tabindex="-1">Storage and Disposal Wells</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/underground-injection-control-permitting" title="Underground Injection Control and Permitting" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Underground Injection Control and Permitting','eventLabel':'/en-us/services/underground-injection-control-permitting'}" target="" tabindex="-1">Underground Injection Control and Permitting</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/hubs/underground-storage" title="Underground Storage and Disposal" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Underground Storage and Disposal','eventLabel':'/en-us/hubs/underground-storage'}" target="" tabindex="-1">Underground Storage and Disposal</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/wind-energy" title="Wind Energy" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Wind Energy','eventLabel':'/en-us/sectors/wind-energy'}" target="" tabindex="-1">Wind Energy</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/oil-and-gas" title="Oil and Gas" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Oil and Gas','eventLabel':'/en-us/sectors/oil-and-gas'}" target="" tabindex="-1">Oil and Gas</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/mining-and-metals" title="Mining and Metals" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Mining and Metals','eventLabel':'/en-us/sectors/mining-and-metals'}" target="" tabindex="-1">Mining and Metals</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/hubs/program-and-construction-management" title="Program and Construction Management" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Program and Construction Management','eventLabel':'/en-us/hubs/program-and-construction-management'}" target="" tabindex="-1">Program and Construction Management</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/meerkat-tech-enabled-physical-security" title="Meerkat™: Tech-enabled Physical Security" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Meerkat™: Tech-enabled Physical Security','eventLabel':'/en-us/services/meerkat-tech-enabled-physical-security'}" target="" tabindex="-1">Meerkat™: Tech-enabled Physical Security</a>
    </li>
</ul>    </div>    <div id="Sub-19479035-BFD1-4838-96D1-3B20E40793F2" class="hidden">

        <div class="category-link">
            <a href="/en-us/hubs/climate-resilience-and-sustainability" title="Climate, Resilience &amp; Sustainability" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Climate, Resilience & Sustainability','eventLabel':'/en-us/hubs/climate-resilience-and-sustainability'}">
                Climate, Resilience &amp; Sustainability
            </a>
        </div>
<ul class="row sub-category-link rec8">
        <li class="col-xs-12">
        <a href="/en-us/services/climate-resilient-infrastructure" title="Climate Resilient Infrastructure" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Climate Resilient Infrastructure','eventLabel':'/en-us/services/climate-resilient-infrastructure'}" target="" tabindex="-1">Climate Resilient Infrastructure</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/climate-related-risks-and-opportunities" title="Climate-Related Risks and Opportunities" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Climate-Related Risks and Opportunities','eventLabel':'/en-us/services/climate-related-risks-and-opportunities'}" target="" tabindex="-1">Climate-Related Risks and Opportunities</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/coastal-engineering" title="Coastal Engineering" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Coastal Engineering','eventLabel':'/en-us/services/coastal-engineering'}" target="" tabindex="-1">Coastal Engineering</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/emergency-management" title="Logistics and Emergency Management" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Logistics and Emergency Management','eventLabel':'/en-us/services/emergency-management'}" target="" tabindex="-1">Logistics and Emergency Management</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/hubs/program-and-construction-management" title="Program and Construction Management" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Program and Construction Management','eventLabel':'/en-us/hubs/program-and-construction-management'}" target="" tabindex="-1">Program and Construction Management</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/resilience-planning-and-strategy" title="Resilience Planning and Strategy" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Resilience Planning and Strategy','eventLabel':'/en-us/services/resilience-planning-and-strategy'}" target="" tabindex="-1">Resilience Planning and Strategy</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/sustainability-energy-and-climate-change" title="Sustainability, Energy and Climate Change" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Sustainability, Energy and Climate Change','eventLabel':'/en-us/services/sustainability-energy-and-climate-change'}" target="" tabindex="-1">Sustainability, Energy and Climate Change</a>
    </li>
</ul>    </div>    <div id="Sub-8FA99049-7565-402B-968F-13959768BBC6" class="hidden">

        <div class="category-link">
            <a href="/en-us/hubs/federal-programs" title="Federal Programs" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Federal Programs','eventLabel':'/en-us/hubs/federal-programs'}">
                Federal Programs
            </a>
        </div>
<ul class="row sub-category-link rec10">
        <li class="col-xs-12">
        <a href="/en-us/sectors/earth-and-environment" title="Environment" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Environment','eventLabel':'/en-us/sectors/earth-and-environment'}" target="" tabindex="-1">Environment</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/environmental-planning" title="Environmental Planning" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Environmental Planning','eventLabel':'/en-us/services/environmental-planning'}" target="" tabindex="-1">Environmental Planning</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/government" title="Government" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Government','eventLabel':'/en-us/sectors/government'}" target="" tabindex="-1">Government</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/emergency-management" title="Logistics and Emergency Management" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Logistics and Emergency Management','eventLabel':'/en-us/services/emergency-management'}" target="" tabindex="-1">Logistics and Emergency Management</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/operations-and-maintenance" title="Operations and Maintenance" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Operations and Maintenance','eventLabel':'/en-us/services/operations-and-maintenance'}" target="" tabindex="-1">Operations and Maintenance</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/overseas-integrated-development" title="Overseas Integrated Development" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Overseas Integrated Development','eventLabel':'/en-us/services/overseas-integrated-development'}" target="" tabindex="-1">Overseas Integrated Development</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/hubs/program-and-construction-management" title="Program and Construction Management" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Program and Construction Management','eventLabel':'/en-us/hubs/program-and-construction-management'}" target="" tabindex="-1">Program and Construction Management</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/national-defense-and-security" title="Safety and Security Program" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Safety and Security Program','eventLabel':'/en-us/services/national-defense-and-security'}" target="" tabindex="-1">Safety and Security Program</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/science" title="Science and Technology" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Science and Technology','eventLabel':'/en-us/sectors/science'}" target="" tabindex="-1">Science and Technology</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/strategic-environmental-assessment" title="Strategic Environmental Assessment" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Strategic Environmental Assessment','eventLabel':'/en-us/services/strategic-environmental-assessment'}" target="" tabindex="-1">Strategic Environmental Assessment</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/planning-community-development-and-environmental-assessment" title="Urban and Community Planning" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Urban and Community Planning','eventLabel':'/en-us/services/planning-community-development-and-environmental-assessment'}" target="" tabindex="-1">Urban and Community Planning</a>
    </li>
</ul>    </div>    <div id="Sub-B0BE6E3C-5AEF-4EED-9E45-A6170D22A478" class="hidden">

        <div class="category-link">
            <a href="/en-us/hubs/earth-and-environment" title="Earth and Environment" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Earth and Environment','eventLabel':'/en-us/hubs/earth-and-environment'}">
                Earth and Environment
            </a>
        </div>
<ul class="row sub-category-link rec10">
        <li class="col-xs-12">
        <a href="/en-us/services/acoustics-and-vibration" title="Acoustics and Vibration" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Acoustics and Vibration','eventLabel':'/en-us/services/acoustics-and-vibration'}" target="" tabindex="-1">Acoustics and Vibration</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/asbestos-and-hazardous-materials-management" title="Asbestos and Hazardous Materials Management" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Asbestos and Hazardous Materials Management','eventLabel':'/en-us/services/asbestos-and-hazardous-materials-management'}" target="" tabindex="-1">Asbestos and Hazardous Materials Management</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/biodiversity-and-nature-based-solutions" title="Biodiversity and Nature Based Solutions" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Biodiversity and Nature Based Solutions','eventLabel':'/en-us/services/biodiversity-and-nature-based-solutions'}" target="" tabindex="-1">Biodiversity and Nature Based Solutions</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/environmental-due-diligence" title="Environmental Due Diligence" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Environmental Due Diligence','eventLabel':'/en-us/services/environmental-due-diligence'}" target="" tabindex="-1">Environmental Due Diligence</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/laboratory-services" title="Field and laboratory testing services" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Field and laboratory testing services','eventLabel':'/en-us/services/laboratory-services'}" target="" tabindex="-1">Field and laboratory testing services</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/groundwater-plume-analytics" title="Groundwater Plume Analytics&#174;" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Groundwater Plume Analytics®','eventLabel':'/en-us/services/groundwater-plume-analytics'}" target="" tabindex="-1">Groundwater Plume Analytics&#174;</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/hydraulic-and-hydrological-analysis" title="Hydraulic and Hydrologic Analysis" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Hydraulic and Hydrologic Analysis','eventLabel':'/en-us/services/hydraulic-and-hydrological-analysis'}" target="" tabindex="-1">Hydraulic and Hydrologic Analysis</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/drinking-water" title="Hydrogeology" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Hydrogeology','eventLabel':'/en-us/sectors/drinking-water'}" target="" tabindex="-1">Hydrogeology</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/industrial-and-manufacturing" title="Industrial and Manufacturing" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Industrial and Manufacturing','eventLabel':'/en-us/sectors/industrial-and-manufacturing'}" target="" tabindex="-1">Industrial and Manufacturing</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/mining-and-metals" title="Mining" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Mining','eventLabel':'/en-us/sectors/mining-and-metals'}" target="" tabindex="-1">Mining</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/biodiversity-and-nature-based-solutions" title="Natural Environment and Ecology" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Natural Environment and Ecology','eventLabel':'/en-us/services/biodiversity-and-nature-based-solutions'}" target="" tabindex="-1">Natural Environment and Ecology</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/oil-and-gas" title="Oil and Gas" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Oil and Gas','eventLabel':'/en-us/sectors/oil-and-gas'}" target="" tabindex="-1">Oil and Gas</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/pfas-management-investigation-and-treatment" title="PFAS Management, Investigation and Treatment" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'PFAS Management, Investigation and Treatment','eventLabel':'/en-us/services/pfas-management-investigation-and-treatment'}" target="" tabindex="-1">PFAS Management, Investigation and Treatment</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/hubs/program-and-construction-management" title="Program and Construction Management" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Program and Construction Management','eventLabel':'/en-us/hubs/program-and-construction-management'}" target="" tabindex="-1">Program and Construction Management</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/contaminated-land-site-investigation-and-remediation" title="Site Investigation and Remediation" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Site Investigation and Remediation','eventLabel':'/en-us/services/contaminated-land-site-investigation-and-remediation'}" target="" tabindex="-1">Site Investigation and Remediation</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/waste-management-and-landfill" title="Waste Management and Landfill" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Waste Management and Landfill','eventLabel':'/en-us/services/waste-management-and-landfill'}" target="" tabindex="-1">Waste Management and Landfill</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/sectors/surface-water" title="Water" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Water','eventLabel':'/en-us/sectors/surface-water'}" target="" tabindex="-1">Water</a>
    </li>
</ul>    </div>    <div id="Sub-18D04D85-6513-488B-A2A7-B205FBF90DB5" class="hidden">

        <div class="category-link">
            <a href="/en-us/hubs/advisory-services" title="Advisory and Planning" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Advisory and Planning','eventLabel':'/en-us/hubs/advisory-services'}">
                Advisory and Planning
            </a>
        </div>
<ul class="row sub-category-link rec10">
        <li class="col-xs-12">
        <a href="/en-us/services/energy-advisory" title=" Energy Advisory" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':' Energy Advisory','eventLabel':'/en-us/services/energy-advisory'}" target="" tabindex="-1"> Energy Advisory</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/alternative-delivery" title="Alternative Delivery" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Alternative Delivery','eventLabel':'/en-us/services/alternative-delivery'}" target="" tabindex="-1">Alternative Delivery</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/asset-management" title="Asset Management" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Asset Management','eventLabel':'/en-us/services/asset-management'}" target="" tabindex="-1">Asset Management</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/business-improvement" title="Business Improvement" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Business Improvement','eventLabel':'/en-us/services/business-improvement'}" target="" tabindex="-1">Business Improvement</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/communications-advisory-services" title="Communications Advisory Services" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Communications Advisory Services','eventLabel':'/en-us/services/communications-advisory-services'}" target="" tabindex="-1">Communications Advisory Services</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/hubs/digital-solutions" title="Digital Solutions" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Digital Solutions','eventLabel':'/en-us/hubs/digital-solutions'}" target="" tabindex="-1">Digital Solutions</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/economic-analysis-and-strategy" title="Economic and Market Analysis" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Economic and Market Analysis','eventLabel':'/en-us/services/economic-analysis-and-strategy'}" target="" tabindex="-1">Economic and Market Analysis</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/environmental-planning" title="Environmental Planning" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Environmental Planning','eventLabel':'/en-us/services/environmental-planning'}" target="" tabindex="-1">Environmental Planning</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/freight-and-logistics" title="Freight and Logistics" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Freight and Logistics','eventLabel':'/en-us/services/freight-and-logistics'}" target="" tabindex="-1">Freight and Logistics</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/planning-strategy-and-grants" title="Planning Strategy and Grants" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Planning Strategy and Grants','eventLabel':'/en-us/services/planning-strategy-and-grants'}" target="" tabindex="-1">Planning Strategy and Grants</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/policy-and-research" title="Policy and Research" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Policy and Research','eventLabel':'/en-us/services/policy-and-research'}" target="" tabindex="-1">Policy and Research</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/hubs/program-and-construction-management" title="Program and Construction Management" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Program and Construction Management','eventLabel':'/en-us/hubs/program-and-construction-management'}" target="" tabindex="-1">Program and Construction Management</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/project-development-and-finance" title="Project Development and Finance" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Project Development and Finance','eventLabel':'/en-us/services/project-development-and-finance'}" target="" tabindex="-1">Project Development and Finance</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/technology-and-innovation" title="Technology and Innovation" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Technology and Innovation','eventLabel':'/en-us/services/technology-and-innovation'}" target="" tabindex="-1">Technology and Innovation</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/transportation-planning" title="Transportation Planning" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Transportation Planning','eventLabel':'/en-us/services/transportation-planning'}" target="" tabindex="-1">Transportation Planning</a>
    </li>    <li class="col-xs-12">
        <a href="/en-us/services/planning-community-development-and-environmental-assessment" title="Urban and Community Planning" class="level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Urban and Community Planning','eventLabel':'/en-us/services/planning-community-development-and-environmental-assessment'}" target="" tabindex="-1">Urban and Community Planning</a>
    </li>
</ul>    </div>
            <div id="ft-cnt-2365A855-C62E-4628-A522-D33E5131E67C" class="feat-content col-lg-6">
<div class="category-link">
    Featured content
</div>             <div class="feat-content-box center-alignment">
                <a class="box-link" title="Franklin-98 Living Shorelines" tabindex="-1" href="/en-us/projects/franklin-98-living-shorelines" data-wspdatalayer="{'event':'interaction','eventCategory':'featured content','eventAction':'franklin-98-living-shorelines','eventLabel':'/en-us/projects/franklin-98-living-shorelines'}">
            <div class="thumbnail">
                
                <img src="/-/media/project/global/image/2025/franklin-98-living-shorelines/thn-franklin-98-living-shorelines.png" class="img-responsive" alt="thn-Franklin-98 Living Shorelines" disablewebedit="False">
                
            </div>
                    <div class="caption">
                        
                        <div class="topnav-title-h2">Franklin-98 Living Shorelines</div>
                        <div class="text-hyphen"><p>Using nature-based solutions and habitat restoration to build coastal resilience and…</p></div>
                    </div>
                </a>
            </div>            </div>
        </div>
    </div>
</div>    </li>    <li role="none" class="mn__item level-0">

        <a href="/en-us/insights" aria-label="Insights" class="mn__link level-0 targetIsHidden " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Insights','eventLabel':'/en-us/insights'}" data-toggle-next-element="" target="" tabindex="0" title="Insights">
            Insights
        </a>
<div aria-hidden="true" role="menu" class="sub-nav sub-nav-box level-0 isHidden">

    <div class="sub-nav--box-row row">

        <div class="col-lg-3 sub-nav--box-1">
            <div class="cta-box">
                <div class="topnav-title-h2">Our global experts offer compelling insights that provide new perspectives.</div>
                                
                                <p class="">Read inspiring articles that challenge the status quo by reframing current issues, sparking fresh conversations and finding new solutions.</p>
                <a class="btn btn-text" role="button" tabindex="-1" title="View all" href="/en-us/insights" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'View all','eventLabel':'/en-us/insights'}" target="" onclick="dataLayer.push({
 &#39;event&#39;: &#39;user_interaction&#39;,
 &#39;event_name&#39;: &#39;click&#39;,
 &#39;interaction&#39;: {
  &#39;click_type&#39;: &#39;cta engagement&#39;,
  &#39;link_url&#39;: &#39;https://www.wsp.com/en-us/insights&#39;,
  &#39;link_text&#39;: &#39;View all&#39;
 }
})">View all <span class="icn-arrow-small-blue"></span></a>                            </div>
            </div>
        <div class="col-lg-3 sub-nav--box-2">
<div class="category-link">
    <a href="/en-us/insights" tabindex="-1" title="Insights" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Insights','eventLabel':'/en-us/insights'}">
        Insights
    </a>
</div>
                            <ul class="sub-category-link level-1 ">
    <li class="col-xs-12 level-1">
        <a id="C5616CF0-7633-4E5B-B84C-E2FFED7095B8" href="/en-us/insights/climate" title="Climate" onclick="" class="level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Climate','eventLabel':'/en-us/insights/climate'}" target="" tabindex="-1">Climate</a>
    </li>    <li class="col-xs-12 level-1">
        <a id="0F2E7397-9CB1-4512-9F14-A2F0D0FB7189" href="/en-us/insights/mobility" title="Mobility" onclick="" class="level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Mobility','eventLabel':'/en-us/insights/mobility'}" target="" tabindex="-1">Mobility</a>
    </li>    <li class="col-xs-12 level-1">
        <a id="FA3B85BC-DD6D-4522-B9EC-39AD53251430" href="/en-us/insights/places" title="Places" onclick="" class="level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Places','eventLabel':'/en-us/insights/places'}" target="" tabindex="-1">Places</a>
    </li>    <li class="col-xs-12 level-1">
        <a id="19A96EF0-F3DB-4819-B1D3-31A328540A70" href="/en-us/insights/resources" title="Resources" onclick="" class="level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Resources','eventLabel':'/en-us/insights/resources'}" target="" tabindex="-1">Resources</a>
    </li>    <li class="col-xs-12 level-1">
        <a id="F26EEA8F-096B-4364-9B73-6129DD7C541B" href="/en-us/insights/society" title="Society" onclick="" class="level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Society','eventLabel':'/en-us/insights/society'}" target="" tabindex="-1">Society</a>
    </li>    <li class="col-xs-12 level-1">
        <a id="F2E55F8A-5B63-4BFA-99DE-1E73B15D7E0C" href="/en-us/insights/technology" title="Technology" onclick="" class="level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Technology','eventLabel':'/en-us/insights/technology'}" target="" tabindex="-1">Technology</a>
    </li>                            </ul>        </div>
        <div class="col-lg-6 sub-nav--box-3">
            <button type="button" class="top-menu-close-btn" tabindex="-1">
                <span class="sr-only">Close</span>
                <svg xmlns="http://www.w3.org/2000/svg" class="menu-close-svg" width="19.512" height="19.512" viewBox="0 0 19.512 19.512"><defs></defs><g transform="translate(18.982 0.53) rotate(90)"><g transform="translate(18.451) rotate(90)"><line class="menu-close-svg-lines" x2="18.451" y2="18.451" /><line class="menu-close-svg-lines" x1="18.451" y2="18.451" /></g></g></svg>
            </button>

            <div id="ft-cnt-A6C2A5E0-4FC3-45A7-AD6D-9035C224EA44" class="feat-content col-lg-6">
<div class="category-link">
    Featured content
</div>             <div class="feat-content-box center-alignment">
                <a class="box-link" title="Resilience in Action: Building Stadiums for the Future" tabindex="-1" href="/en-us/insights/2025-building-resiliency-in-sports-venues" data-wspdatalayer="{'event':'interaction','eventCategory':'featured content','eventAction':'2025-building-resiliency-in-sports-venues','eventLabel':'/en-us/insights/2025-building-resiliency-in-sports-venues'}">
            <div class="thumbnail">
                
                <img src="/-/media/insights/us/sports-stadiums/thn-sports-stadiums.jpg" class="img-responsive" alt="thn-sports-stadiums" disablewebedit="False">
                
            </div>
                    <div class="caption">
                        
                        <div class="topnav-title-h2">Resilience in Action: Building Stadiums for the Future</div>
                        <div class="text-hyphen"><p>The roar of the crowd, the thrill of the game &ndash; these define our love for…</p></div>
                    </div>
                </a>
            </div>            </div>
        </div>
    </div>
</div>    </li>    <li role="none" class="mn__item level-0">

        <a href="/en-us/careers" aria-label="Careers" class="mn__link level-0 targetIsHidden " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Careers','eventLabel':'/en-us/careers'}" data-toggle-next-element="" target="" tabindex="0" title="Careers">
            Careers
        </a>
<div aria-hidden="true" role="menu" class="sub-nav sub-nav-box level-0 isHidden">

    <div class="sub-nav--box-row row">

        <div class="col-lg-3 sub-nav--box-1">
            <div class="cta-box">
                <div class="topnav-title-h2">What if you could do the kind of work the world needs?</div>
                                
                                <p class="">With us, you can. Make your best impact with WSP, where the culture and people also make it the best work of your life.
</p>
                <a class="btn btn-text" role="button" tabindex="-1" title="Find out more" href="/en-us/careers" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Find out more','eventLabel':'/en-us/careers'}" target="" onclick="dataLayer.push({
&#160; &#39;event&#39;: &#39;user_interaction&#39;,
&#160; &#39;event_name&#39;: &#39;click&#39;,
&#160; &#39;interaction&#39;: {
&#160;&#160;&#160; &#39;click_type&#39;: &#39;cta engagement&#39;,
&#160;&#160;&#160; &#39;link_url&#39;: &#39;https://www.wsp.com/en-us/careers&#39;,
&#160;&#160;&#160; &#39;link_text&#39;: &#39;Find out more&#39;
&#160; }
})">Find out more <span class="icn-arrow-small-blue"></span></a>                            </div>
            </div>
        <div class="col-lg-3 sub-nav--box-2">
<div class="category-link">
    <a href="/en-us/careers" tabindex="-1" title="Careers" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Careers','eventLabel':'/en-us/careers'}">
        Careers
    </a>
</div>
                            <ul class="sub-category-link level-1 ">
    <li class="col-xs-12 level-1">
        <a id="7BBA74C6-97B4-4DD3-8FBE-101F32BAC00C" href="/en-us/careers/job-opportunities?country=US" title="Job opportunities" onclick="dataLayer.push({
  &#39;event&#39;: &#39;user_interaction&#39;,
  &#39;event_name&#39;: &#39;click&#39;,
  &#39;interaction&#39;: {
    &#39;click_type&#39;: &#39;cta job list&#39;,
    &#39;link_url&#39;: &#39;https://www.wsp.com/en-us/careers/job-opportunities?country=US&#39;,
    &#39;link_text&#39;: &#39;Job opportunities&#39;
  }
})" class="level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Job opportunities','eventLabel':'/en-us/careers/job-opportunities?country=US'}" target="" tabindex="-1">Job opportunities</a>
    </li>    <li class="col-xs-12 level-1">
        <a id="F7D99400-8C3C-4669-9E4A-9DFD4491E847" href="/en-us/careers/early-career" title="Early career" onclick="" class="level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Early career','eventLabel':'/en-us/careers/early-career'}" target="" tabindex="-1">Early career</a>
    </li>    <li class="col-xs-12 level-1">
        <a id="837A13B6-B472-470A-B10D-F90F14F315B2" href="/en-us/careers/experienced-professionals" title="Experienced professionals" onclick="" class="level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Experienced professionals','eventLabel':'/en-us/careers/experienced-professionals'}" target="" tabindex="-1">Experienced professionals</a>
    </li>    <li class="col-xs-12 level-1">
        <a id="E000E3D3-592D-431F-96A3-7E03214F2C8A" href="/en-us/careers/why-join-us" title="Why join us?" onclick="" class="level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Why join us?','eventLabel':'/en-us/careers/why-join-us'}" target="" tabindex="-1">Why join us?</a>
    </li>    <li class="col-xs-12 level-1">
        <a id="F7EE0DAD-A583-4B08-90D3-1C3C1829D935" href="/en-us/careers/developing-professionals-network" title="Developing Professionals Network" onclick="" class="level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Developing Professionals Network','eventLabel':'/en-us/careers/developing-professionals-network'}" target="" tabindex="-1">Developing Professionals Network</a>
    </li>    <li class="col-xs-12 level-1">
        <a id="8F947C81-123F-437F-B6AD-269250920DF5" href="/en-us/careers/return-the-salute" title="‘Return the Salute&#39; SkillBridge Program" onclick="" class="level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'‘Return the Salute SkillBridge Program','eventLabel':'/en-us/careers/return-the-salute'}" target="" tabindex="-1">‘Return the Salute&#39; SkillBridge Program</a>
    </li>                            </ul>        </div>
        <div class="col-lg-6 sub-nav--box-3">
            <button type="button" class="top-menu-close-btn" tabindex="-1">
                <span class="sr-only">Close</span>
                <svg xmlns="http://www.w3.org/2000/svg" class="menu-close-svg" width="19.512" height="19.512" viewBox="0 0 19.512 19.512"><defs></defs><g transform="translate(18.982 0.53) rotate(90)"><g transform="translate(18.451) rotate(90)"><line class="menu-close-svg-lines" x2="18.451" y2="18.451" /><line class="menu-close-svg-lines" x1="18.451" y2="18.451" /></g></g></svg>
            </button>

            <div id="ft-cnt-BCB9D072-D4EE-4FB7-B51F-09ECA9672B1A" class="feat-content col-lg-6">
<div class="category-link">
    Featured content
</div>             <div class="feat-content-box center-alignment">
                <a class="box-link" title="Why join us? " tabindex="-1" href="/en-us/careers/why-join-us" data-wspdatalayer="{'event':'interaction','eventCategory':'featured content','eventAction':'why-join-us','eventLabel':'/en-us/careers/why-join-us'}">
            <div class="thumbnail">
                
                <img src="/-/media/career/global/image/2024/thn-web-careers-why-join-wsp.jpg" class="img-responsive" alt="Thn-Web-Careers-Why-Join-WSP" disablewebedit="False">
                
            </div>
                    <div class="caption">
                        
                        <div class="topnav-title-h2">Why join us? </div>
                        <div class="text-hyphen"><p>At WSP, you will find the space you need to think bigger and build a career…</p></div>
                    </div>
                </a>
            </div>            </div>
        </div>
    </div>
</div>    </li>    </ul>

</nav>
<!-- Mobile menu container  -->
<nav class="main-nav hidden-lg">
        <ul class=" mn__list level-0">
            <li class=" mn__item level-0">
        <a href="/en-us/who-we-are" title="Who We Are" class=" mn__link  level-0" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Who We Are','eventLabel':'/en-us/who-we-are'}" data-toggle-next-element target="" tabindex=" 0">
            Who We Are
        </a>
<div class="sub-nav  level-0">
        <ul class="row level-1">
            <li class="col-lg-2 level-1">
        <a href="/en-us/who-we-are/our-history" title="Our history" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Our history','eventLabel':'/en-us/who-we-are/our-history'}"  target="" tabindex="-1">
            Our history
        </a>
    </li>     <li class="col-lg-2 level-1">
        <a href="/en-us/hubs/future-ready" title="Future Ready" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Future Ready','eventLabel':'/en-us/hubs/future-ready'}"  target="" tabindex="-1">
            Future Ready
        </a>
    </li>     <li class="col-lg-2 level-1">
        <a href="/en-us/who-we-are/corporate-responsibility" title="Corporate responsibility" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Corporate responsibility','eventLabel':'/en-us/who-we-are/corporate-responsibility'}" data-toggle-next-element target="" tabindex="-1">
            Corporate responsibility
        </a>
<div class="sub-nav  level-1">
        <ul class="row level-2">
<li class="col-lg-2 level-2 back-link no-text-change"><a href="#" tabindex="-1" title="Who We Are">Who We Are</a></li>
                    <li class="col-lg-2 level-2 top-category-link"><a href="#" tabindex="-1" title=""></a></li>            <li class="col-lg-12 level-2 ">
        <span class="title hidden-xs hidden-sm hidden-md">Accountable for Tomorrow</span>
        <div class="level-2">
        <ul class="row level-3">
<li class="col-lg-2 level-3 back-link no-text-change"><a href="#" tabindex="-1" title=""></a></li>
                    <li class="col-lg-2 level-3 top-category-link"><a href="#" tabindex="-1" title=""></a></li>            <li class="col-lg-2 level-3">
        <a href="/en-us/who-we-are/corporate-responsibility/communities" title="Communities" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Communities','eventLabel':'/en-us/who-we-are/corporate-responsibility/communities'}"  target="" tabindex="-1">
            Communities
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/investors/corporate-governance" title="Corporate governance" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Corporate governance','eventLabel':'/en-us/investors/corporate-governance'}"  target="" tabindex="-1">
            Corporate governance
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/who-we-are/corporate-responsibility/ethics-integrity" title="Ethics and integrity" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Ethics and integrity','eventLabel':'/en-us/who-we-are/corporate-responsibility/ethics-integrity'}"  target="" tabindex="-1">
            Ethics and integrity
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/who-we-are/corporate-responsibility/health-safety" title="Health and safety" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Health and safety','eventLabel':'/en-us/who-we-are/corporate-responsibility/health-safety'}"  target="" tabindex="-1">
            Health and safety
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/who-we-are/corporate-responsibility/inclusion-and-belonging" title="Inclusion and belonging" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Inclusion and belonging','eventLabel':'/en-us/who-we-are/corporate-responsibility/inclusion-and-belonging'}"  target="" tabindex="-1">
            Inclusion and belonging
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/who-we-are/corporate-responsibility/sustainability" title="Sustainability" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Sustainability','eventLabel':'/en-us/who-we-are/corporate-responsibility/sustainability'}"  target="" tabindex="-1">
            Sustainability
        </a>
    </li>     </ul>

</div>    </li>    </ul>

</div>    </li>     <li class="col-lg-2 level-1">
        <a href="/en-us/who-we-are/leadership-team" title="U.S. leadership" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'U.S. leadership','eventLabel':'/en-us/who-we-are/leadership-team'}"  target="" tabindex="-1">
            U.S. leadership
        </a>
    </li>     <li class="col-lg-2 level-1">
        <a href="/en-us/our-impact" title="Our impact" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Our impact','eventLabel':'/en-us/our-impact'}"  target="" tabindex="-1">
            Our impact
        </a>
    </li>     </ul>

</div>    </li>     <li class=" mn__item level-0">
        <a href="/en-us/what-we-do" title="What we do" class=" mn__link  level-0" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'What we do','eventLabel':'/en-us/what-we-do'}" data-toggle-next-element target="" tabindex=" 0">
            What we do
        </a>
<div class="sub-nav  level-0">
        <ul class="row level-1">
            <li class="col-lg-2 level-1">
        <a href="/en-us/hubs/property-and-buildings" title="Property and Buildings" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Property and Buildings','eventLabel':'/en-us/hubs/property-and-buildings'}" data-toggle-next-element target="" tabindex="-1">
            Property and Buildings
        </a>
<div class="sub-nav  level-1">
        <ul class="row level-2">
<li class="col-lg-2 level-2 back-link no-text-change"><a href="#" tabindex="-1" title="What we do">What we do</a></li>
                    <li class="col-lg-2 level-2 top-category-link"><a href="#" tabindex="-1" title=""></a></li>            <li class="col-lg-12 level-2 ">
        <span class="title hidden-xs hidden-sm hidden-md">Expertise at your service</span>
        <div class="level-2">
        <ul class="row level-3">
<li class="col-lg-2 level-3 back-link no-text-change"><a href="#" tabindex="-1" title=""></a></li>
                    <li class="col-lg-2 level-3 top-category-link"><a href="#" tabindex="-1" title=""></a></li>            <li class="col-lg-2 level-3">
        <a href="/en-us/services/acoustics-and-vibration" title="Acoustics and Vibration" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Acoustics and Vibration','eventLabel':'/en-us/services/acoustics-and-vibration'}"  target="" tabindex="-1">
            Acoustics and Vibration
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/building-enclosure" title="Building Enclosures" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Building Enclosures','eventLabel':'/en-us/services/building-enclosure'}"  target="" tabindex="-1">
            Building Enclosures
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/building-technology-systems" title="Building Technology Systems" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Building Technology Systems','eventLabel':'/en-us/services/building-technology-systems'}"  target="" tabindex="-1">
            Building Technology Systems
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/built-ecology" title="Built Ecology" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Built Ecology','eventLabel':'/en-us/services/built-ecology'}"  target="" tabindex="-1">
            Built Ecology
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/commercial-and-mixed-use" title="Commercial" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Commercial','eventLabel':'/en-us/sectors/commercial-and-mixed-use'}"  target="" tabindex="-1">
            Commercial
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/commissioning" title="Commissioning" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Commissioning','eventLabel':'/en-us/services/commissioning'}"  target="" tabindex="-1">
            Commissioning
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/data-centers" title="Data Centers" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Data Centers','eventLabel':'/en-us/sectors/data-centers'}"  target="" tabindex="-1">
            Data Centers
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/hubs/existing-buildings" title="Existing Buildings" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Existing Buildings','eventLabel':'/en-us/hubs/existing-buildings'}"  target="" tabindex="-1">
            Existing Buildings
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/hubs/healthcare" title="Healthcare" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Healthcare','eventLabel':'/en-us/hubs/healthcare'}"  target="" tabindex="-1">
            Healthcare
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/high-rise" title="High-Rise" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'High-Rise','eventLabel':'/en-us/sectors/high-rise'}"  target="" tabindex="-1">
            High-Rise
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/hospitality" title="Hospitality" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Hospitality','eventLabel':'/en-us/sectors/hospitality'}"  target="" tabindex="-1">
            Hospitality
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/hubs/industrial-and-advanced-manufacturing" title="Industrial and Advanced Manufacturing" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Industrial and Advanced Manufacturing','eventLabel':'/en-us/hubs/industrial-and-advanced-manufacturing'}"  target="" tabindex="-1">
            Industrial and Advanced Manufacturing
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/lighting-design" title="Lighting Design" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Lighting Design','eventLabel':'/en-us/services/lighting-design'}"  target="" tabindex="-1">
            Lighting Design
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/market-innovation-and-advisory" title="Market Innovation &amp; Advisory Services" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Market Innovation & Advisory Services','eventLabel':'/en-us/services/market-innovation-and-advisory'}"  target="" tabindex="-1">
            Market Innovation &amp; Advisory Services
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/mechanical-electrical-and-plumbing" title="MEP Engineering" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'MEP Engineering','eventLabel':'/en-us/services/mechanical-electrical-and-plumbing'}"  target="" tabindex="-1">
            MEP Engineering
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/hubs/program-and-construction-management" title="Program and Construction Management" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Program and Construction Management','eventLabel':'/en-us/hubs/program-and-construction-management'}"  target="" tabindex="-1">
            Program and Construction Management
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/residential" title="Residential" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Residential','eventLabel':'/en-us/sectors/residential'}"  target="" tabindex="-1">
            Residential
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/science" title="Science &amp; Technology" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Science & Technology','eventLabel':'/en-us/sectors/science'}"  target="" tabindex="-1">
            Science &amp; Technology
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/structural-engineering" title="Structural Engineering" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Structural Engineering','eventLabel':'/en-us/services/structural-engineering'}"  target="" tabindex="-1">
            Structural Engineering
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/hubs/timber" title="Timber" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Timber','eventLabel':'/en-us/hubs/timber'}"  target="" tabindex="-1">
            Timber
        </a>
    </li>     </ul>

</div>    </li>    </ul>

</div>    </li>     <li class="col-lg-2 level-1">
        <a href="/en-us/hubs/transportation" title="Transportation" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Transportation','eventLabel':'/en-us/hubs/transportation'}" data-toggle-next-element target="" tabindex="-1">
            Transportation
        </a>
<div class="sub-nav  level-1">
        <ul class="row level-2">
<li class="col-lg-2 level-2 back-link no-text-change"><a href="#" tabindex="-1" title="What we do">What we do</a></li>
                    <li class="col-lg-2 level-2 top-category-link"><a href="#" tabindex="-1" title=""></a></li>            <li class="col-lg-12 level-2 ">
        <span class="title hidden-xs hidden-sm hidden-md">Expertise at your service</span>
        <div class="level-2">
        <ul class="row level-3">
<li class="col-lg-2 level-3 back-link no-text-change"><a href="#" tabindex="-1" title=""></a></li>
                    <li class="col-lg-2 level-3 top-category-link"><a href="#" tabindex="-1" title=""></a></li>            <li class="col-lg-2 level-3">
        <a href="/en-us/services/alternative-delivery" title="Alternative Delivery" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Alternative Delivery','eventLabel':'/en-us/services/alternative-delivery'}"  target="" tabindex="-1">
            Alternative Delivery
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/hubs/aviation" title="Aviation" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Aviation','eventLabel':'/en-us/hubs/aviation'}"  target="" tabindex="-1">
            Aviation
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/hubs/highways-and-bridges" title="Highways and Bridges" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Highways and Bridges','eventLabel':'/en-us/hubs/highways-and-bridges'}"  target="" tabindex="-1">
            Highways and Bridges
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/hubs/maritime" title="Maritime" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Maritime','eventLabel':'/en-us/hubs/maritime'}"  target="" tabindex="-1">
            Maritime
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/mobility-operations" title="Mobility Operations" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Mobility Operations','eventLabel':'/en-us/services/mobility-operations'}"  target="" tabindex="-1">
            Mobility Operations
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/hubs/program-and-construction-management" title="Program and Construction Management" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Program and Construction Management','eventLabel':'/en-us/hubs/program-and-construction-management'}"  target="" tabindex="-1">
            Program and Construction Management
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/hubs/transit-and-rail" title="Rail and Transit" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Rail and Transit','eventLabel':'/en-us/hubs/transit-and-rail'}"  target="" tabindex="-1">
            Rail and Transit
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/road-usage-charging" title="Road Usage Charging" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Road Usage Charging','eventLabel':'/en-us/services/road-usage-charging'}"  target="" tabindex="-1">
            Road Usage Charging
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/tolling" title="Tolling" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Tolling','eventLabel':'/en-us/services/tolling'}"  target="" tabindex="-1">
            Tolling
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/hubs/tunnels" title="Tunnels" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Tunnels','eventLabel':'/en-us/hubs/tunnels'}"  target="" tabindex="-1">
            Tunnels
        </a>
    </li>     </ul>

</div>    </li>    </ul>

</div>    </li>     <li class="col-lg-2 level-1">
        <a href="/en-us/hubs/water" title="Water" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Water','eventLabel':'/en-us/hubs/water'}" data-toggle-next-element target="" tabindex="-1">
            Water
        </a>
<div class="sub-nav  level-1">
        <ul class="row level-2">
<li class="col-lg-2 level-2 back-link no-text-change"><a href="#" tabindex="-1" title="What we do">What we do</a></li>
                    <li class="col-lg-2 level-2 top-category-link"><a href="#" tabindex="-1" title=""></a></li>            <li class="col-lg-4 level-2 ">
        <span class="title hidden-xs hidden-sm hidden-md">Expertise at your service</span>
        <div class="level-2">
        <ul class="row level-3">
<li class="col-lg-2 level-3 back-link no-text-change"><a href="#" tabindex="-1" title=""></a></li>
                    <li class="col-lg-2 level-3 top-category-link"><a href="#" tabindex="-1" title=""></a></li>            <li class="col-lg-2 level-3">
        <a href="/en-us/services/asset-management" title="Asset Management" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Asset Management','eventLabel':'/en-us/services/asset-management'}"  target="" tabindex="-1">
            Asset Management
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/civil-works" title="Civil Works" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Civil Works','eventLabel':'/en-us/services/civil-works'}"  target="" tabindex="-1">
            Civil Works
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/coastal-engineering" title="Coastal Engineering" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Coastal Engineering','eventLabel':'/en-us/services/coastal-engineering'}"  target="" tabindex="-1">
            Coastal Engineering
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/drinking-water" title="Drinking Water" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Drinking Water','eventLabel':'/en-us/sectors/drinking-water'}"  target="" tabindex="-1">
            Drinking Water
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/flood-control-and-hydraulic-structures" title="Flood Control &amp; Hydraulic Structures" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Flood Control & Hydraulic Structures','eventLabel':'/en-us/services/flood-control-and-hydraulic-structures'}"  target="" tabindex="-1">
            Flood Control &amp; Hydraulic Structures
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/hydraulic-and-hydrological-analysis" title="Hydraulic &amp; Hydrologic Analysis" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Hydraulic & Hydrologic Analysis','eventLabel':'/en-us/services/hydraulic-and-hydrological-analysis'}"  target="" tabindex="-1">
            Hydraulic &amp; Hydrologic Analysis
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/hydrogeology" title="Hydrogeology" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Hydrogeology','eventLabel':'/en-us/services/hydrogeology'}"  target="" tabindex="-1">
            Hydrogeology
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/industrial-water-and-wastewater-management" title="Industrial Water &amp; Wastewater Management" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Industrial Water & Wastewater Management','eventLabel':'/en-us/sectors/industrial-water-and-wastewater-management'}"  target="" tabindex="-1">
            Industrial Water &amp; Wastewater Management
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/hubs/program-and-construction-management" title="Program and Construction Management" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Program and Construction Management','eventLabel':'/en-us/hubs/program-and-construction-management'}"  target="" tabindex="-1">
            Program and Construction Management
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/stormwater" title="Stormwater" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Stormwater','eventLabel':'/en-us/services/stormwater'}"  target="" tabindex="-1">
            Stormwater
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/surface-water" title="Surface Water" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Surface Water','eventLabel':'/en-us/sectors/surface-water'}"  target="" tabindex="-1">
            Surface Water
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/wastewater" title="Wastewater" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Wastewater','eventLabel':'/en-us/sectors/wastewater'}"  target="" tabindex="-1">
            Wastewater
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/water-and-wastewater-treatment" title="Water &amp; Wastewater Treatment" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Water & Wastewater Treatment','eventLabel':'/en-us/services/water-and-wastewater-treatment'}"  target="" tabindex="-1">
            Water &amp; Wastewater Treatment
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/water-conveyance-tunnels" title="Water Conveyance Tunnels" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Water Conveyance Tunnels','eventLabel':'/en-us/sectors/water-conveyance-tunnels'}"  target="" tabindex="-1">
            Water Conveyance Tunnels
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/water-supply-and-distribution" title="Water Supply &amp; Distribution" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Water Supply & Distribution','eventLabel':'/en-us/services/water-supply-and-distribution'}"  target="" tabindex="-1">
            Water Supply &amp; Distribution
        </a>
    </li>     </ul>

</div>    </li>    </ul>

</div>    </li>     <li class="col-lg-2 level-1">
        <a href="/en-us/hubs/energy-and-resources" title="Energy and Resources" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Energy and Resources','eventLabel':'/en-us/hubs/energy-and-resources'}" data-toggle-next-element target="" tabindex="-1">
            Energy and Resources
        </a>
<div class="sub-nav  level-1">
        <ul class="row level-2">
<li class="col-lg-2 level-2 back-link no-text-change"><a href="#" tabindex="-1" title="What we do">What we do</a></li>
                    <li class="col-lg-2 level-2 top-category-link"><a href="#" tabindex="-1" title=""></a></li>            <li class="col-lg-12 level-2 ">
        <span class="title hidden-xs hidden-sm hidden-md">Expertise at your service</span>
        <div class="level-2">
        <ul class="row level-3">
<li class="col-lg-2 level-3 back-link no-text-change"><a href="#" tabindex="-1" title=""></a></li>
                    <li class="col-lg-2 level-3 top-category-link"><a href="#" tabindex="-1" title=""></a></li>            <li class="col-lg-2 level-3">
        <a href="/en-us/services/power-generation" title=" Power Generation" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':' Power Generation','eventLabel':'/en-us/services/power-generation'}"  target="" tabindex="-1">
             Power Generation
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/distributed-energy-and-electrification" title="Distributed Energy and Electrification" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Distributed Energy and Electrification','eventLabel':'/en-us/services/distributed-energy-and-electrification'}"  target="" tabindex="-1">
            Distributed Energy and Electrification
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/energy-storage-facility-operations" title="Energy Storage Facility Operations" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Energy Storage Facility Operations','eventLabel':'/en-us/services/energy-storage-facility-operations'}"  target="" tabindex="-1">
            Energy Storage Facility Operations
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/energy-surface-facilities" title="Energy Surface Facilities" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Energy Surface Facilities','eventLabel':'/en-us/services/energy-surface-facilities'}"  target="" tabindex="-1">
            Energy Surface Facilities
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/hydrogen" title="Hydrogen" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Hydrogen','eventLabel':'/en-us/sectors/hydrogen'}"  target="" tabindex="-1">
            Hydrogen
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/hydropower-and-dams" title="Hydropower and Dams" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Hydropower and Dams','eventLabel':'/en-us/sectors/hydropower-and-dams'}"  target="" tabindex="-1">
            Hydropower and Dams
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/meerkat-tech-enabled-physical-security" title="Meerkat™: Tech-enabled Physical Security" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Meerkat™: Tech-enabled Physical Security','eventLabel':'/en-us/services/meerkat-tech-enabled-physical-security'}"  target="" tabindex="-1">
            Meerkat™: Tech-enabled Physical Security
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/mining-and-metals" title="Mining and Metals" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Mining and Metals','eventLabel':'/en-us/sectors/mining-and-metals'}"  target="" tabindex="-1">
            Mining and Metals
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/oil-and-gas" title="Oil and Gas" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Oil and Gas','eventLabel':'/en-us/sectors/oil-and-gas'}"  target="" tabindex="-1">
            Oil and Gas
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/power-and-energy" title="Power and Energy" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Power and Energy','eventLabel':'/en-us/sectors/power-and-energy'}"  target="" tabindex="-1">
            Power and Energy
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/power-planning-routing-and-permitting" title="Power Planning, Routing, Siting and Permitting" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Power Planning, Routing, Siting and Permitting','eventLabel':'/en-us/services/power-planning-routing-and-permitting'}"  target="" tabindex="-1">
            Power Planning, Routing, Siting and Permitting
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/power-transmission-and-distribution" title="Power Transmission and Distribution" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Power Transmission and Distribution','eventLabel':'/en-us/services/power-transmission-and-distribution'}"  target="" tabindex="-1">
            Power Transmission and Distribution
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/hubs/program-and-construction-management" title="Program and Construction Management" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Program and Construction Management','eventLabel':'/en-us/hubs/program-and-construction-management'}"  target="" tabindex="-1">
            Program and Construction Management
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/solar-energy" title="Solar Energy" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Solar Energy','eventLabel':'/en-us/sectors/solar-energy'}"  target="" tabindex="-1">
            Solar Energy
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/storage-and-disposal-wells" title="Storage and Disposal Wells" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Storage and Disposal Wells','eventLabel':'/en-us/services/storage-and-disposal-wells'}"  target="" tabindex="-1">
            Storage and Disposal Wells
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/underground-injection-control-permitting" title="Underground Injection Control and Permitting" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Underground Injection Control and Permitting','eventLabel':'/en-us/services/underground-injection-control-permitting'}"  target="" tabindex="-1">
            Underground Injection Control and Permitting
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/hubs/underground-storage" title="Underground Storage and Disposal" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Underground Storage and Disposal','eventLabel':'/en-us/hubs/underground-storage'}"  target="" tabindex="-1">
            Underground Storage and Disposal
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/wind-energy" title="Wind Energy" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Wind Energy','eventLabel':'/en-us/sectors/wind-energy'}"  target="" tabindex="-1">
            Wind Energy
        </a>
    </li>     </ul>

</div>    </li>    </ul>

</div>    </li>     <li class="col-lg-2 level-1">
        <a href="/en-us/hubs/climate-resilience-and-sustainability" title="Climate, Resilience &amp; Sustainability" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Climate, Resilience & Sustainability','eventLabel':'/en-us/hubs/climate-resilience-and-sustainability'}" data-toggle-next-element target="" tabindex="-1">
            Climate, Resilience &amp; Sustainability
        </a>
<div class="sub-nav  level-1">
        <ul class="row level-2">
<li class="col-lg-2 level-2 back-link no-text-change"><a href="#" tabindex="-1" title="What we do">What we do</a></li>
                    <li class="col-lg-2 level-2 top-category-link"><a href="#" tabindex="-1" title=""></a></li>            <li class="col-lg-12 level-2 ">
        <span class="title hidden-xs hidden-sm hidden-md">Expertise at your service</span>
        <div class="level-2">
        <ul class="row level-3">
<li class="col-lg-2 level-3 back-link no-text-change"><a href="#" tabindex="-1" title=""></a></li>
                    <li class="col-lg-2 level-3 top-category-link"><a href="#" tabindex="-1" title=""></a></li>            <li class="col-lg-2 level-3">
        <a href="/en-us/services/climate-resilient-infrastructure" title="Climate Resilient Infrastructure" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Climate Resilient Infrastructure','eventLabel':'/en-us/services/climate-resilient-infrastructure'}"  target="" tabindex="-1">
            Climate Resilient Infrastructure
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/climate-related-risks-and-opportunities" title="Climate-Related Risks and Opportunities" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Climate-Related Risks and Opportunities','eventLabel':'/en-us/services/climate-related-risks-and-opportunities'}"  target="" tabindex="-1">
            Climate-Related Risks and Opportunities
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/coastal-engineering" title="Coastal Engineering" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Coastal Engineering','eventLabel':'/en-us/services/coastal-engineering'}"  target="" tabindex="-1">
            Coastal Engineering
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/emergency-management" title="Logistics and Emergency Management" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Logistics and Emergency Management','eventLabel':'/en-us/services/emergency-management'}"  target="" tabindex="-1">
            Logistics and Emergency Management
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/hubs/program-and-construction-management" title="Program and Construction Management" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Program and Construction Management','eventLabel':'/en-us/hubs/program-and-construction-management'}"  target="" tabindex="-1">
            Program and Construction Management
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/resilience-planning-and-strategy" title="Resilience Planning and Strategy" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Resilience Planning and Strategy','eventLabel':'/en-us/services/resilience-planning-and-strategy'}"  target="" tabindex="-1">
            Resilience Planning and Strategy
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/sustainability-energy-and-climate-change" title="Sustainability, Energy and Climate Change" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Sustainability, Energy and Climate Change','eventLabel':'/en-us/services/sustainability-energy-and-climate-change'}"  target="" tabindex="-1">
            Sustainability, Energy and Climate Change
        </a>
    </li>     </ul>

</div>    </li>    </ul>

</div>    </li>     <li class="col-lg-2 level-1">
        <a href="/en-us/hubs/federal-programs" title="Federal Programs" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Federal Programs','eventLabel':'/en-us/hubs/federal-programs'}" data-toggle-next-element target="" tabindex="-1">
            Federal Programs
        </a>
<div class="sub-nav  level-1">
        <ul class="row level-2">
<li class="col-lg-2 level-2 back-link no-text-change"><a href="#" tabindex="-1" title="What we do">What we do</a></li>
                    <li class="col-lg-2 level-2 top-category-link"><a href="#" tabindex="-1" title=""></a></li>            <li class="col-lg-4 level-2 ">
        <span class="title hidden-xs hidden-sm hidden-md">Expertise at your service</span>
        <div class="level-2">
        <ul class="row level-3">
<li class="col-lg-2 level-3 back-link no-text-change"><a href="#" tabindex="-1" title=""></a></li>
                    <li class="col-lg-2 level-3 top-category-link"><a href="#" tabindex="-1" title=""></a></li>            <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/earth-and-environment" title="Environment" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Environment','eventLabel':'/en-us/sectors/earth-and-environment'}"  target="" tabindex="-1">
            Environment
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/environmental-planning" title="Environmental Planning" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Environmental Planning','eventLabel':'/en-us/services/environmental-planning'}"  target="" tabindex="-1">
            Environmental Planning
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/government" title="Government" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Government','eventLabel':'/en-us/sectors/government'}"  target="" tabindex="-1">
            Government
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/emergency-management" title="Logistics and Emergency Management" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Logistics and Emergency Management','eventLabel':'/en-us/services/emergency-management'}"  target="" tabindex="-1">
            Logistics and Emergency Management
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/operations-and-maintenance" title="Operations and Maintenance" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Operations and Maintenance','eventLabel':'/en-us/services/operations-and-maintenance'}"  target="" tabindex="-1">
            Operations and Maintenance
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/overseas-integrated-development" title="Overseas Integrated Development" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Overseas Integrated Development','eventLabel':'/en-us/services/overseas-integrated-development'}"  target="" tabindex="-1">
            Overseas Integrated Development
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/hubs/program-and-construction-management" title="Program and Construction Management" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Program and Construction Management','eventLabel':'/en-us/hubs/program-and-construction-management'}"  target="" tabindex="-1">
            Program and Construction Management
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/national-defense-and-security" title="Safety and Security Program" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Safety and Security Program','eventLabel':'/en-us/services/national-defense-and-security'}"  target="" tabindex="-1">
            Safety and Security Program
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/science" title="Science and Technology" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Science and Technology','eventLabel':'/en-us/sectors/science'}"  target="" tabindex="-1">
            Science and Technology
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/strategic-environmental-assessment" title="Strategic Environmental Assessment" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Strategic Environmental Assessment','eventLabel':'/en-us/services/strategic-environmental-assessment'}"  target="" tabindex="-1">
            Strategic Environmental Assessment
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/planning-community-development-and-environmental-assessment" title="Urban and Community Planning" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Urban and Community Planning','eventLabel':'/en-us/services/planning-community-development-and-environmental-assessment'}"  target="" tabindex="-1">
            Urban and Community Planning
        </a>
    </li>     </ul>

</div>    </li>    </ul>

</div>    </li>     <li class="col-lg-2 level-1">
        <a href="/en-us/hubs/earth-and-environment" title="Earth and Environment" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Earth and Environment','eventLabel':'/en-us/hubs/earth-and-environment'}" data-toggle-next-element target="" tabindex="-1">
            Earth and Environment
        </a>
<div class="sub-nav  level-1">
        <ul class="row level-2">
<li class="col-lg-2 level-2 back-link no-text-change"><a href="#" tabindex="-1" title="What we do">What we do</a></li>
                    <li class="col-lg-2 level-2 top-category-link"><a href="#" tabindex="-1" title=""></a></li>            <li class="col-lg-12 level-2 ">
        <span class="title hidden-xs hidden-sm hidden-md">Expertise at your service</span>
        <div class="level-2">
        <ul class="row level-3">
<li class="col-lg-2 level-3 back-link no-text-change"><a href="#" tabindex="-1" title=""></a></li>
                    <li class="col-lg-2 level-3 top-category-link"><a href="#" tabindex="-1" title=""></a></li>            <li class="col-lg-2 level-3">
        <a href="/en-us/services/acoustics-and-vibration" title="Acoustics and Vibration" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Acoustics and Vibration','eventLabel':'/en-us/services/acoustics-and-vibration'}"  target="" tabindex="-1">
            Acoustics and Vibration
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/asbestos-and-hazardous-materials-management" title="Asbestos and Hazardous Materials Management" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Asbestos and Hazardous Materials Management','eventLabel':'/en-us/services/asbestos-and-hazardous-materials-management'}"  target="" tabindex="-1">
            Asbestos and Hazardous Materials Management
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/biodiversity-and-nature-based-solutions" title="Biodiversity and Nature Based Solutions" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Biodiversity and Nature Based Solutions','eventLabel':'/en-us/services/biodiversity-and-nature-based-solutions'}"  target="" tabindex="-1">
            Biodiversity and Nature Based Solutions
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/environmental-due-diligence" title="Environmental Due Diligence" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Environmental Due Diligence','eventLabel':'/en-us/services/environmental-due-diligence'}"  target="" tabindex="-1">
            Environmental Due Diligence
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/laboratory-services" title="Field and laboratory testing services" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Field and laboratory testing services','eventLabel':'/en-us/services/laboratory-services'}"  target="" tabindex="-1">
            Field and laboratory testing services
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/groundwater-plume-analytics" title="Groundwater Plume Analytics&#174;" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Groundwater Plume Analytics®','eventLabel':'/en-us/services/groundwater-plume-analytics'}"  target="" tabindex="-1">
            Groundwater Plume Analytics&#174;
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/hydraulic-and-hydrological-analysis" title="Hydraulic and Hydrologic Analysis" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Hydraulic and Hydrologic Analysis','eventLabel':'/en-us/services/hydraulic-and-hydrological-analysis'}"  target="" tabindex="-1">
            Hydraulic and Hydrologic Analysis
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/drinking-water" title="Hydrogeology" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Hydrogeology','eventLabel':'/en-us/sectors/drinking-water'}"  target="" tabindex="-1">
            Hydrogeology
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/industrial-and-manufacturing" title="Industrial and Manufacturing" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Industrial and Manufacturing','eventLabel':'/en-us/sectors/industrial-and-manufacturing'}"  target="" tabindex="-1">
            Industrial and Manufacturing
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/mining-and-metals" title="Mining" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Mining','eventLabel':'/en-us/sectors/mining-and-metals'}"  target="" tabindex="-1">
            Mining
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/biodiversity-and-nature-based-solutions" title="Natural Environment and Ecology" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Natural Environment and Ecology','eventLabel':'/en-us/services/biodiversity-and-nature-based-solutions'}"  target="" tabindex="-1">
            Natural Environment and Ecology
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/oil-and-gas" title="Oil and Gas" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Oil and Gas','eventLabel':'/en-us/sectors/oil-and-gas'}"  target="" tabindex="-1">
            Oil and Gas
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/pfas-management-investigation-and-treatment" title="PFAS Management, Investigation and Treatment" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'PFAS Management, Investigation and Treatment','eventLabel':'/en-us/services/pfas-management-investigation-and-treatment'}"  target="" tabindex="-1">
            PFAS Management, Investigation and Treatment
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/hubs/program-and-construction-management" title="Program and Construction Management" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Program and Construction Management','eventLabel':'/en-us/hubs/program-and-construction-management'}"  target="" tabindex="-1">
            Program and Construction Management
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/contaminated-land-site-investigation-and-remediation" title="Site Investigation and Remediation" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Site Investigation and Remediation','eventLabel':'/en-us/services/contaminated-land-site-investigation-and-remediation'}"  target="" tabindex="-1">
            Site Investigation and Remediation
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/waste-management-and-landfill" title="Waste Management and Landfill" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Waste Management and Landfill','eventLabel':'/en-us/services/waste-management-and-landfill'}"  target="" tabindex="-1">
            Waste Management and Landfill
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/sectors/surface-water" title="Water" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Water','eventLabel':'/en-us/sectors/surface-water'}"  target="" tabindex="-1">
            Water
        </a>
    </li>     </ul>

</div>    </li>    </ul>

</div>    </li>     <li class="col-lg-2 level-1">
        <a href="/en-us/hubs/advisory-services" title="Advisory and Planning" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Advisory and Planning','eventLabel':'/en-us/hubs/advisory-services'}" data-toggle-next-element target="" tabindex="-1">
            Advisory and Planning
        </a>
<div class="sub-nav  level-1">
        <ul class="row level-2">
<li class="col-lg-2 level-2 back-link no-text-change"><a href="#" tabindex="-1" title="What we do">What we do</a></li>
                    <li class="col-lg-2 level-2 top-category-link"><a href="#" tabindex="-1" title=""></a></li>            <li class="col-lg-12 level-2 ">
        <span class="title hidden-xs hidden-sm hidden-md">Expertise at your service</span>
        <div class="level-2">
        <ul class="row level-3">
<li class="col-lg-2 level-3 back-link no-text-change"><a href="#" tabindex="-1" title=""></a></li>
                    <li class="col-lg-2 level-3 top-category-link"><a href="#" tabindex="-1" title=""></a></li>            <li class="col-lg-2 level-3">
        <a href="/en-us/services/energy-advisory" title=" Energy Advisory" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':' Energy Advisory','eventLabel':'/en-us/services/energy-advisory'}"  target="" tabindex="-1">
             Energy Advisory
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/alternative-delivery" title="Alternative Delivery" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Alternative Delivery','eventLabel':'/en-us/services/alternative-delivery'}"  target="" tabindex="-1">
            Alternative Delivery
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/asset-management" title="Asset Management" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Asset Management','eventLabel':'/en-us/services/asset-management'}"  target="" tabindex="-1">
            Asset Management
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/business-improvement" title="Business Improvement" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Business Improvement','eventLabel':'/en-us/services/business-improvement'}"  target="" tabindex="-1">
            Business Improvement
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/communications-advisory-services" title="Communications Advisory Services" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Communications Advisory Services','eventLabel':'/en-us/services/communications-advisory-services'}"  target="" tabindex="-1">
            Communications Advisory Services
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/hubs/digital-solutions" title="Digital Solutions" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Digital Solutions','eventLabel':'/en-us/hubs/digital-solutions'}"  target="" tabindex="-1">
            Digital Solutions
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/economic-analysis-and-strategy" title="Economic and Market Analysis" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Economic and Market Analysis','eventLabel':'/en-us/services/economic-analysis-and-strategy'}"  target="" tabindex="-1">
            Economic and Market Analysis
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/environmental-planning" title="Environmental Planning" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Environmental Planning','eventLabel':'/en-us/services/environmental-planning'}"  target="" tabindex="-1">
            Environmental Planning
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/freight-and-logistics" title="Freight and Logistics" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Freight and Logistics','eventLabel':'/en-us/services/freight-and-logistics'}"  target="" tabindex="-1">
            Freight and Logistics
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/planning-strategy-and-grants" title="Planning Strategy and Grants" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Planning Strategy and Grants','eventLabel':'/en-us/services/planning-strategy-and-grants'}"  target="" tabindex="-1">
            Planning Strategy and Grants
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/policy-and-research" title="Policy and Research" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Policy and Research','eventLabel':'/en-us/services/policy-and-research'}"  target="" tabindex="-1">
            Policy and Research
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/hubs/program-and-construction-management" title="Program and Construction Management" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Program and Construction Management','eventLabel':'/en-us/hubs/program-and-construction-management'}"  target="" tabindex="-1">
            Program and Construction Management
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/project-development-and-finance" title="Project Development and Finance" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Project Development and Finance','eventLabel':'/en-us/services/project-development-and-finance'}"  target="" tabindex="-1">
            Project Development and Finance
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/technology-and-innovation" title="Technology and Innovation" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Technology and Innovation','eventLabel':'/en-us/services/technology-and-innovation'}"  target="" tabindex="-1">
            Technology and Innovation
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/transportation-planning" title="Transportation Planning" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Transportation Planning','eventLabel':'/en-us/services/transportation-planning'}"  target="" tabindex="-1">
            Transportation Planning
        </a>
    </li>     <li class="col-lg-2 level-3">
        <a href="/en-us/services/planning-community-development-and-environmental-assessment" title="Urban and Community Planning" class="  level-3" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Urban and Community Planning','eventLabel':'/en-us/services/planning-community-development-and-environmental-assessment'}"  target="" tabindex="-1">
            Urban and Community Planning
        </a>
    </li>     </ul>

</div>    </li>    </ul>

</div>    </li>     </ul>

</div>    </li>     <li class=" mn__item level-0">
        <a href="/en-us/insights" title="Insights" class=" mn__link  level-0" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Insights','eventLabel':'/en-us/insights'}" data-toggle-next-element target="" tabindex=" 0">
            Insights
        </a>
<div class="sub-nav  level-0">
        <ul class="row level-1">
            <li class="col-lg-2 level-1">
        <a href="/en-us/insights/climate" title="Climate" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Climate','eventLabel':'/en-us/insights/climate'}"  target="" tabindex="-1">
            Climate
        </a>
    </li>     <li class="col-lg-2 level-1">
        <a href="/en-us/insights/mobility" title="Mobility" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Mobility','eventLabel':'/en-us/insights/mobility'}"  target="" tabindex="-1">
            Mobility
        </a>
    </li>     <li class="col-lg-2 level-1">
        <a href="/en-us/insights/places" title="Places" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Places','eventLabel':'/en-us/insights/places'}"  target="" tabindex="-1">
            Places
        </a>
    </li>     <li class="col-lg-2 level-1">
        <a href="/en-us/insights/resources" title="Resources" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Resources','eventLabel':'/en-us/insights/resources'}"  target="" tabindex="-1">
            Resources
        </a>
    </li>     <li class="col-lg-2 level-1">
        <a href="/en-us/insights/society" title="Society" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Society','eventLabel':'/en-us/insights/society'}"  target="" tabindex="-1">
            Society
        </a>
    </li>     <li class="col-lg-2 level-1">
        <a href="/en-us/insights/technology" title="Technology" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Technology','eventLabel':'/en-us/insights/technology'}"  target="" tabindex="-1">
            Technology
        </a>
    </li>     </ul>

</div>    </li>     <li class=" mn__item level-0">
        <a href="/en-us/careers" title="Careers" class=" mn__link  level-0" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Careers','eventLabel':'/en-us/careers'}" data-toggle-next-element target="" tabindex=" 0">
            Careers
        </a>
<div class="sub-nav  level-0">
        <ul class="row level-1">
            <li class="col-lg-2 level-1">
        <a href="/en-us/careers/job-opportunities?country=US" title="Job opportunities" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Job opportunities','eventLabel':'/en-us/careers/job-opportunities?country=US'}"  target="" tabindex="-1">
            Job opportunities
        </a>
    </li>     <li class="col-lg-2 level-1">
        <a href="/en-us/careers/early-career" title="Early career" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Early career','eventLabel':'/en-us/careers/early-career'}"  target="" tabindex="-1">
            Early career
        </a>
    </li>     <li class="col-lg-2 level-1">
        <a href="/en-us/careers/experienced-professionals" title="Experienced professionals" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Experienced professionals','eventLabel':'/en-us/careers/experienced-professionals'}"  target="" tabindex="-1">
            Experienced professionals
        </a>
    </li>     <li class="col-lg-2 level-1">
        <a href="/en-us/careers/why-join-us" title="Why join us?" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Why join us?','eventLabel':'/en-us/careers/why-join-us'}"  target="" tabindex="-1">
            Why join us?
        </a>
    </li>     <li class="col-lg-2 level-1">
        <a href="/en-us/careers/developing-professionals-network" title="Developing Professionals Network" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Developing Professionals Network','eventLabel':'/en-us/careers/developing-professionals-network'}"  target="" tabindex="-1">
            Developing Professionals Network
        </a>
    </li>     <li class="col-lg-2 level-1">
        <a href="/en-us/careers/return-the-salute" title="‘Return the Salute&#39; SkillBridge Program" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'‘Return the Salute SkillBridge Program','eventLabel':'/en-us/careers/return-the-salute'}"  target="" tabindex="-1">
            ‘Return the Salute&#39; SkillBridge Program
        </a>
    </li>     </ul>

</div>    </li>     </ul>

</nav>






                <!-- / main-nav -->
                <!-- main-search -->
                

                <!-- / main-search -->
                <div class="right-container clearfix">
                    <div class="country-language-selector sn__item isClosed">
    <style type="text/css">
        .cl-a, .cl-c {
            fill: none;
        }

        .cl-a {
            stroke: #141212;
            stroke-miterlimit: 10;
            stroke-width: 1.5px;
        }

        .cl-b {
            stroke: none;
        }
    </style>
    <button tabindex="-1" aria-label="Change Location" title="Change Location" class="cls__btn " type="button" role="button" data-toggle-next-element><span class="globe-svg-icon"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><defs></defs><g class="cl-a" transform="translate(4.754 0)"><ellipse class="cl-b" cx="5.246" cy="10" rx="5.246" ry="10" /><ellipse class="cl-c" cx="5.246" cy="10" rx="4.496" ry="9.25" /></g><line class="cl-a" y2="20" transform="translate(10)" /><g class="cl-a"><circle class="cl-b" cx="10" cy="10" r="10" /><circle class="cl-c" cx="10" cy="10" r="9.25" /></g><line class="cl-a" x2="17.589" transform="translate(1.167 10.092)" /></svg></span> <span class="hidden-lg">United States - English</span></button>

    <div id="lang-menu" class="cls__subnav isHidden" tabindex="-1">
        <div class="row cls__global-box">
            <div class="col-xs-12 back-link">
                
                <a tabindex="-1" class="sn__sub-link" href="#" title="Back">
                    Select your language and location
                </a>
            </div>
            

            <!-- New -->
            
            <div class="col-xs-12 mar-btm-10 hidden-xs hidden-sm hidden-md">
                <div class="clear">
                    <div class="cls__subnav_summary_parent">
                        <div class="col-xs-12 col-sm-6 text-left cls__subnav_summary">
                            <div class="row global-box-sum-txt"><p>We are locally dedicated with international scale.</p></div>
                        </div>
                        <div class="col-xs-12 col-sm-6 text-right new__typo__15">
                            <div class="row title-country-language">
                                
                                <div class="tcl__right__global padTB10"><button type="button" class="top-menu-close-btn" tabindex="-1">
                <span class="sr-only">Close</span>
                <svg xmlns="http://www.w3.org/2000/svg" class="menu-close-svg" width="19.512" height="19.512" viewBox="0 0 19.512 19.512"><defs></defs><g transform="translate(18.982 0.53) rotate(90)"><g transform="translate(18.451) rotate(90)"><line class="menu-close-svg-lines" x2="18.451" y2="18.451"></line><line class="menu-close-svg-lines" x1="18.451" y2="18.451"></line></g></g></svg>
            </button></div>
</div>
                        </div>
                        <div class="clear"></div>
                    </div>
                </div>
                <div class="clear"></div>
            </div>
                <div class="col-xs-12 col-md-4 col-lg-3">
<div class="title-country-language">
    
    
    <div class="country-name ">
        International
    </div>
    <ul class="tcl__list">
<li class="tcl__item ">
    <div class="tcl__left ">Global</div>
    <div class="tcl__right">
<a title="English" tabindex="-1" href="/en-gl/" lang="en" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Global','eventLabel':'English'}">English</a>  &mdash;
<a title="Fran&amp;#231;ais" tabindex="-1" href="/fr-gl/" lang="fr" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Global','eventLabel':'Fran&#231;ais'}">Fran&#231;ais</a>     </div>
</li>    </ul>
</div>
<div class="title-country-language">
    
    
    <div class="country-name active">
        Americas
    </div>
    <ul class="tcl__list">
<li class="tcl__item ">
    <div class="tcl__left ">Brazil</div>
    <div class="tcl__right">
<a title="Portugu&amp;#234;s" tabindex="-1" href="/pt-br/" lang="pt" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Brazil','eventLabel':'Portugu&#234;s'}">Portugu&#234;s</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Canada</div>
    <div class="tcl__right">
<a title="English" tabindex="-1" href="/en-ca/" lang="en" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Canada','eventLabel':'English'}">English</a>  &mdash;
<a title="Fran&amp;#231;ais" tabindex="-1" href="/fr-ca/" lang="fr" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Canada','eventLabel':'Fran&#231;ais'}">Fran&#231;ais</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Chile</div>
    <div class="tcl__right">
<a title="Espa&amp;#241;ol" tabindex="-1" href="/es-cl/" lang="es" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Chile','eventLabel':'Espa&#241;ol'}">Espa&#241;ol</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Colombia</div>
    <div class="tcl__right">
<a title="Espa&amp;#241;ol" tabindex="-1" href="/es-co/" lang="es" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Colombia','eventLabel':'Espa&#241;ol'}">Espa&#241;ol</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Mexico</div>
    <div class="tcl__right">
<a title="Espa&amp;#241;ol" tabindex="-1" href="/es-mx/" lang="es" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Mexico','eventLabel':'Espa&#241;ol'}">Espa&#241;ol</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Panama</div>
    <div class="tcl__right">
<a title="Espa&amp;#241;ol" tabindex="-1" href="/es-pa/" lang="es" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Panama','eventLabel':'Espa&#241;ol'}">Espa&#241;ol</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Peru</div>
    <div class="tcl__right">
<a title="Espa&amp;#241;ol" tabindex="-1" href="/es-pe/" lang="es" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Peru','eventLabel':'Espa&#241;ol'}">Espa&#241;ol</a>     </div>
</li><li class="tcl__item active-bg">
    <div class="tcl__left active">United States</div>
    <div class="tcl__right">
<a title="English" tabindex="-1" href="/en-us/" lang="en" target="_self" class="country tcl__link active" data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'United States','eventLabel':'English'}">English</a>     </div>
</li>    </ul>
</div>
    </div>
    <div class="col-xs-12 col-md-4 col-lg-3">
<div class="title-country-language">
    
    
    <div class="country-name ">
        Africa
    </div>
    <ul class="tcl__list">
<li class="tcl__item ">
    <div class="tcl__left ">South Africa</div>
    <div class="tcl__right">
<a title="English" tabindex="-1" href="/en-za/" lang="en" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'South Africa','eventLabel':'English'}">English</a>     </div>
</li>    </ul>
</div>
<div class="title-country-language">
    
    
    <div class="country-name ">
        Asia
    </div>
    <ul class="tcl__list">
<li class="tcl__item ">
    <div class="tcl__left ">China</div>
    <div class="tcl__right">
<a title="中文(简体)" tabindex="-1" href="/zh-cn/" lang="zh" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'China','eventLabel':'中文(简体)'}">中文(简体)</a>  &mdash;
<a title="English" tabindex="-1" href="/en-cn/" lang="en" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'China','eventLabel':'English'}">English</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Hong Kong</div>
    <div class="tcl__right">
<a title="English" tabindex="-1" href="/en-hk/" lang="en" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Hong Kong','eventLabel':'English'}">English</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">India</div>
    <div class="tcl__right">
<a title="English" tabindex="-1" href="https://www.wsp.com/en-gl/sites/india" target="_blank" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'India','eventLabel':'English'}">English</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Indonesia</div>
    <div class="tcl__right">
<a title="English" tabindex="-1" href="/en-id/" lang="en" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Indonesia','eventLabel':'English'}">English</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Malaysia</div>
    <div class="tcl__right">
<a title="English" tabindex="-1" href="/en-my/" lang="en" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Malaysia','eventLabel':'English'}">English</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Philippines</div>
    <div class="tcl__right">
<a title="English" tabindex="-1" href="/en-ph/" lang="en" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Philippines','eventLabel':'English'}">English</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Singapore</div>
    <div class="tcl__right">
<a title="English" tabindex="-1" href="/en-sg/" lang="en" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Singapore','eventLabel':'English'}">English</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">South Korea</div>
    <div class="tcl__right">
<a title="한국어(대한민국)" tabindex="-1" href="/ko-kr/" lang="ko" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'South Korea','eventLabel':'한국어(대한민국)'}">한국어(대한민국)</a>  &mdash;
<a title="English" tabindex="-1" href="/en-kr/" lang="en" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'South Korea','eventLabel':'English'}">English</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Thailand</div>
    <div class="tcl__right">
<a title="English" tabindex="-1" href="/en-th/" lang="en" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Thailand','eventLabel':'English'}">English</a>     </div>
</li>    </ul>
</div>
    </div>
    <div class="col-xs-12 col-md-4 col-lg-3">
<div class="title-country-language">
    
    
    <div class="country-name ">
        Europe
    </div>
    <ul class="tcl__list">
<li class="tcl__item ">
    <div class="tcl__left ">Denmark</div>
    <div class="tcl__right">
<a title="Dansk" tabindex="-1" href="/da-dk/" lang="da" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Denmark','eventLabel':'Dansk'}">Dansk</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Finland</div>
    <div class="tcl__right">
<a title="Suomi" tabindex="-1" href="/fi-fi/" lang="fi" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Finland','eventLabel':'Suomi'}">Suomi</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">France</div>
    <div class="tcl__right">
<a title="Fran&amp;#231;ais" tabindex="-1" href="/fr-fr/" lang="fr" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'France','eventLabel':'Fran&#231;ais'}">Fran&#231;ais</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Germany</div>
    <div class="tcl__right">
<a title="Deutsch" tabindex="-1" href="/de-de/" lang="de" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Germany','eventLabel':'Deutsch'}">Deutsch</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Hungary</div>
    <div class="tcl__right">
<a title="English" tabindex="-1" href="https://www.wsp.com/en-gl/sites/hungary" target="_blank" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Hungary','eventLabel':'English'}">English</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Italy</div>
    <div class="tcl__right">
<a title="Italiano" tabindex="-1" href="/it-it/" lang="it" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Italy','eventLabel':'Italiano'}">Italiano</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Netherlands</div>
    <div class="tcl__right">
<a title="Nederlands" tabindex="-1" href="/nl-nl/" lang="nl" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Netherlands','eventLabel':'Nederlands'}">Nederlands</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Norway</div>
    <div class="tcl__right">
<a title="Norsk" tabindex="-1" href="/nb-no/" lang="nb" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Norway','eventLabel':'Norsk'}">Norsk</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Poland</div>
    <div class="tcl__right">
<a title="Polski" tabindex="-1" href="/pl-pl/" lang="pl" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Poland','eventLabel':'Polski'}">Polski</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Romania</div>
    <div class="tcl__right">
<a title="English" tabindex="-1" href="https://www.wsp.com/en-gl/sites/romania" target="_blank" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Romania','eventLabel':'English'}">English</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Spain</div>
    <div class="tcl__right">
<a title="Espa&amp;#241;ol" tabindex="-1" href="/es-es/" lang="es" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Spain','eventLabel':'Espa&#241;ol'}">Espa&#241;ol</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Sweden</div>
    <div class="tcl__right">
<a title="Svenska" tabindex="-1" href="/sv-se/" lang="sv" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Sweden','eventLabel':'Svenska'}">Svenska</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Switzerland</div>
    <div class="tcl__right">
<a title="Deutsch" tabindex="-1" href="/de-ch/" lang="de" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Switzerland','eventLabel':'Deutsch'}">Deutsch</a>  &mdash;
<a title="Fran&amp;#231;ais" tabindex="-1" href="/fr-ch/" lang="fr" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Switzerland','eventLabel':'Fran&#231;ais'}">Fran&#231;ais</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">Turkey</div>
    <div class="tcl__right">
<a title="Turkish" tabindex="-1" href="https://www.wsp.com/en-gl/sites/turkey" target="_blank" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Turkey','eventLabel':'Turkish'}">Turkish</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">United Kingdom</div>
    <div class="tcl__right">
<a title="English" tabindex="-1" href="/en-gb/" lang="en" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'United Kingdom','eventLabel':'English'}">English</a>     </div>
</li>    </ul>
</div>
    </div>
    <div class="col-xs-12 col-md-4 col-lg-3">
<div class="title-country-language">
    
    
    <div class="country-name ">
        Middle East
    </div>
    <ul class="tcl__list">
<li class="tcl__item ">
    <div class="tcl__left ">Middle East</div>
    <div class="tcl__right">
<a title="English" tabindex="-1" href="/en-me/" lang="en" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Middle East','eventLabel':'English'}">English</a>     </div>
</li>    </ul>
</div>
<div class="title-country-language">
    
    
    <div class="country-name ">
        Oceania
    </div>
    <ul class="tcl__list">
<li class="tcl__item ">
    <div class="tcl__left ">Australia</div>
    <div class="tcl__right">
<a title="English" tabindex="-1" href="/en-au/" lang="en" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'Australia','eventLabel':'English'}">English</a>     </div>
</li><li class="tcl__item ">
    <div class="tcl__left ">New Zealand</div>
    <div class="tcl__right">
<a title="English" tabindex="-1" href="/en-nz/" lang="en" target="_self" class="country tcl__link " data-wspdatalayer="{'event':'interaction','eventCategory':'country-selection','eventAction':'New Zealand','eventLabel':'English'}">English</a>     </div>
</li>    </ul>
</div>
    </div>

            <div class="clear"></div>
            <div class="text-right title-country-language"><div class="ttl-world-link"><a class="btn btn-secondary" href="/en-us/contact-us/offices" title="Worldwide offices" tabindex="-1">Worldwide offices</a></div></div>
        </div>
    </div>
</div><style>
    .padTB10 {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .ttl-world-link a {
        text-transform: none;
        /*position: static !important;*/
        padding-right: 15px;
        margin-top: 0;
        text-decoration: none;
    }

    @media (max-width:1199px) {     

        .text-right.title-country-language {
            padding-left: 3vw;
            padding-right: 3vw;
        }
    }

    @media (min-width:1200px) {
        .ttl-world-link a.btn.btn-secondary {
            font-size: 11px;
        }
    }

    @media (min-width:1500px) {
        .ttl-world-link a.btn.btn-secondary {
            font-size: 14px;
        }
    }

    .ttl-world-link a:hover, .ttl-world-link a:active, .ttl-world-link a:focus {
        text-decoration: none;
        color: #FF372F;
    }

    .country-language-selector .cls__btn.targetIsHidden + .cls__subnav.gbl-menu,
    .language-selector .cls__btn.targetIsHidden + .cls__subnav.gbl-menu {
        height: auto !important;
        z-index: 1000;
    }
</style>

<script type="text/javascript">
    //$(window).load(function () {
    window.addEventListener('load', function () {
        if (!window.location.href.includes('utm_source')) {
            var domainName = window.location.origin
            var pathName = window.location.pathname
            pathName = pathName.substring(0, 6)
            var currentUrl = domainName + pathName
            var exdays = 30;
            const d = new Date();
            d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
            let expires = "expires=" + d.toUTCString();
            document.cookie = "_langUrl" + "=" + currentUrl + ";" + expires + ";path=/" + "; SameSite=None" + "; Secure";
        }
    });
</script>
                    
<!-- Desktop Megamenu View -->
<nav class="secondary-nav hidden-xs hidden-sm hidden-md">
    <ul class="sn__list">
        <li id="invNavBox" class="Ir-Nav sn__item">
            
<!-- Desktop Megamenu View -->
<nav class="main-nav hidden-xs hidden-sm hidden-md">
        <ul aria-label="Secondary Menu" class=" mn__list level-0">
        <li role="none" class="mn__item level-0">

            <a href="https://www.wsp.com/en-gl/investors" title="Investors" target="_blank" aria-label="Investors" class="mn__link  level-0 targetIsHidden " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Investors','eventLabel':'https://www.wsp.com/en-gl/investors'}" data-toggle-next-element=""  tabindex="0">
                Investors
            </a>
        </li>
    </ul>

</nav>
<!-- Mobile menu container  -->
<div class="main-nav hidden-lg">    <ul class="mn__list level-0">
                <li class="mn__item level-0">
            <a href="https://www.wsp.com/en-gl/investors" title="Investors" class="mn__link  level-0" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Investors','eventLabel':'https://www.wsp.com/en-gl/investors'}" data-toggle-next-element target="_blank" tabindex="0">
                Investors
            </a>
        </li>
    </ul>
</div>



        </li>
        <li class="Ir-Nav sn__item">
            <nav class="main-nav hidden-xs hidden-sm hidden-md">
                    <ul class=" mn__list level-0">
<li role="none" class="mn__item level-0">

    <a href="/en-us/events" aria-label="Events" title="Events" class="mn__link  level-0 targetIsHidden " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Events','eventLabel':'/en-us/events'}" data-toggle-next-element="" target="" tabindex="0" onclick="">
        Events
    </a>
</li><li role="none" class="mn__item level-0">

    <a href="/en-us/news" aria-label="News" title="News" class="mn__link  level-0 targetIsHidden " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'News','eventLabel':'/en-us/news'}" data-toggle-next-element="" target="" tabindex="0" onclick="">
        News
    </a>
</li><li role="none" class="mn__item level-0">

    <a href="/en-us/contact-us/send-a-message" aria-label="Contact us" title="Contact us" class="mn__link  level-0 targetIsHidden " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Contact us','eventLabel':'/en-us/contact-us/send-a-message'}" data-toggle-next-element="" target="" tabindex="0" onclick="dataLayer.push({
&#160; &#39;event&#39;: &#39;user_interaction&#39;,
&#160; &#39;event_name&#39;: &#39;click&#39;,
&#160; &#39;interaction&#39;: {
&#160;&#160;&#160; &#39;click_type&#39;: &#39;cta form&#39;,
&#160;&#160;&#160; &#39;link_url&#39;: &#39;https://www.wsp.com/en-us/contact-us/send-a-message&#39;,
&#160;&#160;&#160; &#39;link_text&#39;: &#39;Contact us&#39;
&#160; }
})">
        Contact us
    </a>
<div aria-hidden="true" role="menu" class="sub-nav sub-nav-box level-0 isHidden">

    <div class="sub-nav--box-row row">

        <div class="col-lg-3 sub-nav--box-1">
            <div class="cta-box">
                
                <div class="topnav-title-h2">We are dedicated to our local communities and driven by global talent.</div>
                <p class="">Contact us to find out how our diversified offering, world-class expertise and geographical reach can assist you in achieving your vision.</p>
            <a class="btn btn-text" role="button" tabindex="-1" title="Contact Us" href="/en-us/contact-us/send-a-message" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Contact Us','eventLabel':'/en-us/contact-us/send-a-message'}" target="" onclick="dataLayer.push({
&#160; &#39;event&#39;: &#39;user_interaction&#39;,
&#160; &#39;event_name&#39;: &#39;click&#39;,
&#160; &#39;interaction&#39;: {
&#160;&#160;&#160; &#39;click_type&#39;: &#39;cta form&#39;,
&#160;&#160;&#160; &#39;link_url&#39;: &#39;https://www.wsp.com/en-us/contact-us/send-a-message&#39;,
&#160;&#160;&#160; &#39;link_text&#39;: &#39;Contact Us&#39;
&#160; }
})">Contact Us <span class="icn-arrow-small-blue"></span></a>            </div>
<div class="social-box">
    <hr />
<p class="title">Follow us</p>    <ul class="">
<li>
    <a href="https://www.linkedin.com/company/wspusa/" tabindex="-1" class="" target="_blank" title="LinkedIn" data-wspdatalayer="{'event':'interaction','eventCategory':'social media','eventAction':'LinkedIn','eventLabel':'https://www.linkedin.com/company/wspusa/'}" >
<i class="fa fa-linkedin fa-size"></i>     </a>
</li>
<li>
    <a href="https://twitter.com/wspusa" tabindex="-1" class="" target="_blank" title="Twitter" data-wspdatalayer="{'event':'interaction','eventCategory':'social media','eventAction':'Twitter','eventLabel':'https://twitter.com/wspusa'}" >
<i class="fa fa-x-twitter fa-size"></i>     </a>
</li>
<li>
    <a href="https://www.facebook.com/wspusa/" tabindex="-1" class="" target="_blank" title="Facebook" data-wspdatalayer="{'event':'interaction','eventCategory':'social media','eventAction':'Facebook','eventLabel':'https://www.facebook.com/wspusa/'}" >
<i class="fa fa-facebook fa-size"></i>     </a>
</li>
<li>
    <a href="https://www.instagram.com/wsp.usa/" tabindex="-1" class="" target="_blank" title="Instagram" data-wspdatalayer="{'event':'interaction','eventCategory':'social media','eventAction':'Instagram','eventLabel':'https://www.instagram.com/wsp.usa/'}" >
<i class="fa fa-instagram fa-size"></i>     </a>
</li>
</ul>    <div class="clear"></div>
</div>        </div>
        <div class="col-lg-3 sub-nav--box-2">
<div class="category-link">
    <a href="/en-us/contact-us/send-a-message" tabindex="-1" title="Contact us" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Contact us','eventLabel':'/en-us/contact-us/send-a-message'}">
        Contact us
    </a>
</div>
                            <ul class="sub-category-link level-1 ">
<li class="col-xs-12 level-1">
    <a id="BA437EED-BA82-4A43-A4AE-3503BF720228" title="Send a message" href="/en-us/contact-us/send-a-message" onclick="dataLayer.push({
&#160; &#39;event&#39;: &#39;user_interaction&#39;,
&#160; &#39;event_name&#39;: &#39;click&#39;,
&#160; &#39;interaction&#39;: {
&#160;&#160;&#160; &#39;click_type&#39;: &#39;cta form&#39;,
&#160;&#160;&#160; &#39;link_url&#39;: &#39;https://www.wsp.com/en-us/contact-us/send-a-message&#39;,
&#160;&#160;&#160; &#39;link_text&#39;: &#39;Send a message&#39;
&#160; }
})" class="level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Send a message','eventLabel':'/en-us/contact-us/send-a-message'}" target="" tabindex="-1" >Send a message</a>
</li><li class="col-xs-12 level-1">
    <a id="E7E29DBE-9DAF-4881-BB17-EACE0FC6A857" title="Request a proposal" href="/en-us/contact-us/request-for-proposal" onclick="dataLayer.push({
&#160; &#39;event&#39;: &#39;user_interaction&#39;,
&#160; &#39;event_name&#39;: &#39;click&#39;,
&#160; &#39;interaction&#39;: {
&#160;&#160;&#160; &#39;click_type&#39;: &#39;cta form&#39;,
&#160;&#160;&#160; &#39;link_url&#39;: &#39;https://www.wsp.com/en-us/contact-us/request-for-proposal&#39;,
&#160;&#160;&#160; &#39;link_text&#39;: &#39;Request a proposal&#39;
&#160; }
})" class="level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Request a proposal','eventLabel':'/en-us/contact-us/request-for-proposal'}" target="" tabindex="-1" >Request a proposal</a>
</li><li class="col-xs-12 level-1">
    <a id="17EF3392-F834-44EE-99A1-B34357D7D926" title="Find an expert" href="https://www.wsp.com/en-us/contact-us/find-an-expert#sort=relevancy&amp;f:Country=[United%20States]" onclick="dataLayer.push({
&#160; &#39;event&#39;: &#39;user_interaction&#39;,
&#160; &#39;event_name&#39;: &#39;click&#39;,
&#160; &#39;interaction&#39;: {
&#160;&#160;&#160; &#39;click_type&#39;: &#39;cta form&#39;,
&#160;&#160;&#160; &#39;link_url&#39;: &#39;https://www.wsp.comhttps://www.wsp.com/en-us/contact-us/find-an-expert#sort=relevancy&amp;f:Country=[United%20States]&#39;,
&#160;&#160;&#160; &#39;link_text&#39;: &#39;Find an expert&#39;
&#160; }
})" class="level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Find an expert','eventLabel':'https://www.wsp.com/en-us/contact-us/find-an-expert#sort=relevancy&f:Country=[United%20States]'}" target="" tabindex="-1" >Find an expert</a>
</li><li class="col-xs-12 level-1">
    <a id="0C95DAF5-360E-4C88-85CF-0F55782195E3" title="Offices" href="/en-us/contact-us/offices/united-states" onclick="dataLayer.push({
  &#39;event&#39;: &#39;user_interaction&#39;,
  &#39;event_name&#39;: &#39;click&#39;,
  &#39;interaction&#39;: {
    &#39;click_type&#39;: &#39;offices link&#39;,
    &#39;link_url&#39;: &#39;https://www.wsp.com/en-us/contact-us/offices/united-states&#39;,
    &#39;link_text&#39;: &#39;Offices&#39;
  }
})" class="level-1 " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Offices','eventLabel':'/en-us/contact-us/offices/united-states'}" target="" tabindex="-1" >Offices</a>
</li>                            </ul>        </div>
        <div class="col-lg-6 sub-nav--box-3">
            <button type="button" class="top-menu-close-btn" tabindex="-1">
                <span class="sr-only">Close</span>
                <svg xmlns="http://www.w3.org/2000/svg" class="menu-close-svg" width="19.512" height="19.512" viewBox="0 0 19.512 19.512"><defs></defs><g transform="translate(18.982 0.53) rotate(90)"><g transform="translate(18.451) rotate(90)"><line class="menu-close-svg-lines" x2="18.451" y2="18.451" /><line class="menu-close-svg-lines" x1="18.451" y2="18.451" /></g></g></svg>
            </button>

        <div id="ft-cnt-B214B037-E3ED-4EE6-9C6A-BD76D1402248" class="feat-content col-lg-6">
        </div>
        </div>
    </div>
</div></li>    </ul>

            </nav>
        </li>
    </ul>
</nav>

<!-- Mobile menu container  -->
<nav class="secondary-nav hidden-lg">
    <ul class="sn__list">
        <li class="Ir-Nav sn__item">
            
<!-- Desktop Megamenu View -->
<nav class="main-nav hidden-xs hidden-sm hidden-md">
        <ul aria-label="Secondary Menu" class=" mn__list level-0">
        <li role="none" class="mn__item level-0">

            <a href="https://www.wsp.com/en-gl/investors" title="Investors" target="_blank" aria-label="Investors" class="mn__link  level-0 targetIsHidden " data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Investors','eventLabel':'https://www.wsp.com/en-gl/investors'}" data-toggle-next-element=""  tabindex="0">
                Investors
            </a>
        </li>
    </ul>

</nav>
<!-- Mobile menu container  -->
<div class="main-nav hidden-lg">    <ul class="mn__list level-0">
                <li class="mn__item level-0">
            <a href="https://www.wsp.com/en-gl/investors" title="Investors" class="mn__link  level-0" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Investors','eventLabel':'https://www.wsp.com/en-gl/investors'}" data-toggle-next-element target="_blank" tabindex="0">
                Investors
            </a>
        </li>
    </ul>
</div>



        </li>
        <li class="Ir-Nav sn__item">
            <div class="main-nav hidden-lg">    <ul class="mn__list level-0">
        <li class="mn__item level-0">
    <a href="/en-us/events" title="Events" class="mn__link  level-0" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Events','eventLabel':'/en-us/events'}"  target="" tabindex="-1">
        Events
    </a>
    
</li> <li class="mn__item level-0">
    <a href="/en-us/news" title="News" class="mn__link  level-0" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'News','eventLabel':'/en-us/news'}"  target="" tabindex="-1">
        News
    </a>
    
</li> <li class="mn__item level-0">
    <a href="/en-us/contact-us/send-a-message" title="Contact us" class="mn__link  level-0" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Contact us','eventLabel':'/en-us/contact-us/send-a-message'}" data-toggle-next-element target="" tabindex="-1">
        Contact us
    </a>
    
<div class="sub-nav level-0">
        <ul class="row level-1">
        <li class="col-lg-2 level-1">
    <a href="/en-us/contact-us/send-a-message" title="Send a message" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Send a message','eventLabel':'/en-us/contact-us/send-a-message'}"  target="" tabindex="-1">
        Send a message
    </a>
    
</li> <li class="col-lg-2 level-1">
    <a href="/en-us/contact-us/request-for-proposal" title="Request a proposal" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Request a proposal','eventLabel':'/en-us/contact-us/request-for-proposal'}"  target="" tabindex="-1">
        Request a proposal
    </a>
    
</li> <li class="col-lg-2 level-1">
    <a href="https://www.wsp.com/en-us/contact-us/find-an-expert#sort=relevancy&amp;f:Country=[United%20States]" title="Find an expert" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Find an expert','eventLabel':'https://www.wsp.com/en-us/contact-us/find-an-expert#sort=relevancy&f:Country=[United%20States]'}"  target="" tabindex="-1">
        Find an expert
    </a>
    
</li> <li class="col-lg-2 level-1">
    <a href="/en-us/contact-us/offices/united-states" title="Offices" class="  level-1" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Offices','eventLabel':'/en-us/contact-us/offices/united-states'}"  target="" tabindex="-1">
        Offices
    </a>
    
</li>     </ul>

</div></li>     </ul>
</div>
        </li>
    </ul>
</nav>





<script>
    $(document).ready(function () {
        var invNavBox = $("#invNavBox").html().trim();
        if (invNavBox.length == 0) {
            $('#invNavBox').hide();
        } else {
            //  alert('inside show');
        }
    });
</script>
                    
<div class="main-search">
    <button class="ms__btn" type="button">
        <div class="ms__search-icon">
            <style>
                .a-search2-icon{fill:none;stroke:#141212;stroke-miterlimit:10;stroke-width:2px;}
                .a-search2-mob-icon{fill:none;stroke:#141212;stroke-miterlimit:10;stroke-width:2px;}
                .a-search2-icon:hover{stroke:#ff372f;}
                .a-search2-mob-icon:hover{stroke:#ff373f !important;}
            </style>
            <svg xmlns="http://www.w3.org/2000/svg" class="a-search2-icon hidden-xs hidden-sm hidden-md" width="21.266" height="20.877" viewBox="0 0 21.266 20.877"><g id="icn_search" data-name="icn search" transform="translate(0.75 0.75)"><circle id="Ellipse_1" data-name="Ellipse 1" cx="7.807" cy="7.807" r="7.807" fill="none" stroke="" stroke-width="1.5"/><line id="Ligne_1" data-name="Ligne 1" x2="6.469" y2="6.469" transform="translate(13.516 13.128)" fill="none" stroke="" stroke-width="1.5"/></g></svg>
            <svg xmlns="http://www.w3.org/2000/svg" class="a-search2-mob-icon hidden-lg" width="16.698" height="16.406" viewBox="0 0 16.698 16.406"><g id="icn-search-mobile" transform="translate(1 1)"><circle id="Ellipse_1" data-name="Ellipse 1" cx="5.856" cy="5.856" r="5.856" fill="none" stroke="" stroke-width="2"/><line id="Ligne_1" data-name="Ligne 1" x2="4.852" y2="4.852" transform="translate(10.138 9.847)" fill="none" stroke="" stroke-width="2"/></g></svg>            
            <span class="sr-only">Click to open search </span>
        </div>
        <div class="ms__close-icon">
            <span class="sr-only">
                Click to close search
            </span>
            <style>                
                .a-close-mob-nw-icon{fill:none;stroke:#141212;stroke-width:2px;}
                .a-close-mob-nw-icon:hover{stroke:#ff373f;}
            </style>            
            <svg class="a-close-mob-nw-icon hidden-lg" xmlns="http://www.w3.org/2000/svg" width="16.39" height="16.39" viewBox="0 0 16.39 16.39"><g  transform="translate(0.707 0.707)"><line id="Ligne_75" data-name="Ligne 75" x2="14.976" y2="14.976" fill="none" stroke="" stroke-width="2"/><line id="Ligne_76" data-name="Ligne 76" x1="14.976" y2="14.976" fill="none" stroke="" stroke-width="2"/></g></svg>
            
        </div>
    </button>
</div>
<style></style>

                </div>
            </div>
        </div>
    </div>

    


<!-- / main-search -->

<div class="main-search--header">
    <div class="pos-rel">
        <button class="ms__btn coveo-close" type="button">
            <div class="ms__close-icon">
                <span class="sr-only">Close</span>
                <style>.a-close-icon{fill: none;stroke: #ffffff;stroke-width: 2px;}.a-close-icon:hover {stroke: #ff373f}</style>
                <svg class="a-close-icon" xmlns="http://www.w3.org/2000/svg" width="18.121" height="18.121" viewBox="0 0 18.121 18.121"><g transform="translate(0.53 0.53)"><line id="Ligne_75" data-name="Ligne 75" x2="17.06" y2="17.06" fill="none" stroke="" stroke-width="1.5" /><line id="Ligne_76" data-name="Ligne 76" x1="17.06" y2="17.06" fill="none" stroke="" stroke-width="1.5" /></g></svg>
            </div>
        </button>
        
<script class="coveo-script" type="text/javascript" src='https://static.cloud.coveo.com/searchui/v2.10089/js/CoveoJsSearch.Lazy.min.js'></script>
<script class="coveo-for-sitecore-script" type="text/javascript" src='https://static.cloud.coveo.com/coveoforsitecore/ui/v0.55.8/js/CoveoForSitecore.Lazy.min.js'></script>
<script type="text/javascript" src="https://static.cloud.coveo.com/searchui/v2.10089/js/cultures/en.js"></script>

<div>


    
    
    <!-- Resources -->
    <div id="SearchResourcesProperties_6919140836624998b2674135ae61cebe"
         class="CoveoForSitecoreContext"
                    data-sc-should-have-analytics-component='true'
            data-sc-analytics-enabled='true'
            data-sc-current-language='en-US'
            data-prebind-sc-language-field-name='fieldTranslator'
            data-sc-language-field-name='_language'
            data-sc-labels='{&quot;longdateformat&quot; : &quot;dddd, MMMM d, yyyy&quot; , &quot;Created&quot; : &quot;&quot; , &quot;Created By&quot; : &quot;&quot; , &quot;Creation Time&quot; : &quot;&quot; , &quot;Template&quot; : &quot;&quot; , &quot;Updated By&quot; : &quot;&quot; , &quot;Language&quot; : &quot;&quot; , &quot;Last Time Modified&quot; : &quot;&quot; , &quot;Uniform resource identifier&quot; : &quot;&quot; , &quot;If the problem persists contact the administrator.&quot; : &quot;&quot; , &quot;Search is currently unavailable&quot; : &quot;&quot; , &quot;Ascending&quot; : &quot;&quot; , &quot;Descending&quot; : &quot;&quot;}'
            data-sc-maximum-age='900000'
            data-sc-page-name='home'
            data-sc-page-name-full-path='/sitecore/content/Wsp/home'
            data-sc-index-source-name='Coveo_web_index - wsp10prod'
            data-sc-is-in-experience-editor='false'
            data-sc-is-user-anonymous='true'
            data-sc-item-uri='sitecore://web/{6BDE1205-A37C-4DAC-AB26-993831D33E79}?lang=en-US&amp;ver=1'
            data-sc-item-id='6bde1205-a37c-4dac-ab26-993831d33e79'
            data-prebind-sc-latest-version-field-name='fieldTranslator'
            data-sc-latest-version-field-name='_latestversion'
            data-sc-rest-endpoint-uri='/coveo/rest'
            data-sc-analytics-endpoint-uri='/coveo/rest/ua'
            data-sc-site-name='wsp'
            data-sc-field-prefix='f'
            data-sc-field-suffix='78468'
            data-sc-prefer-source-specific-fields='false'
            data-sc-external-fields='[{&quot;fieldName&quot;:&quot;permanentid&quot;,&quot;shouldEscape&quot;:false}]'
            data-sc-source-specific-fields='[{&quot;fieldName&quot;:&quot;attachmentparentid&quot;},{&quot;fieldName&quot;:&quot;author&quot;},{&quot;fieldName&quot;:&quot;clickableuri&quot;},{&quot;fieldName&quot;:&quot;collection&quot;},{&quot;fieldName&quot;:&quot;concepts&quot;},{&quot;fieldName&quot;:&quot;date&quot;},{&quot;fieldName&quot;:&quot;filetype&quot;},{&quot;fieldName&quot;:&quot;indexeddate&quot;},{&quot;fieldName&quot;:&quot;isattachment&quot;},{&quot;fieldName&quot;:&quot;language&quot;},{&quot;fieldName&quot;:&quot;printableuri&quot;},{&quot;fieldName&quot;:&quot;rowid&quot;},{&quot;fieldName&quot;:&quot;size&quot;},{&quot;fieldName&quot;:&quot;source&quot;},{&quot;fieldName&quot;:&quot;topparent&quot;},{&quot;fieldName&quot;:&quot;topparentid&quot;},{&quot;fieldName&quot;:&quot;transactionid&quot;},{&quot;fieldName&quot;:&quot;uri&quot;},{&quot;fieldName&quot;:&quot;urihash&quot;}]'
>
    </div>
    <script type="text/javascript">
        var endpointConfiguration = {
            itemUri: "sitecore://web/{6BDE1205-A37C-4DAC-AB26-993831D33E79}?lang=en-US&amp;ver=1",
            siteName: "wsp",
            restEndpointUri: "/coveo/rest"
        };
        if (typeof (CoveoForSitecore) !== "undefined") {
            CoveoForSitecore.SearchEndpoint.configureSitecoreEndpoint(endpointConfiguration);
            CoveoForSitecore.version = "5.0.1039.1";
            var context = document.getElementById("SearchResourcesProperties_6919140836624998b2674135ae61cebe");
            if (!!context) {
                CoveoForSitecore.Context.configureContext(context);
            }
        }
    </script>
</div>
        
<div class="coveo-wrapper">
    
    

        <div id="_A5A9CC7B-F8CE-47F7-9201-54D4727EC4A9"
               data-search-interface-id='global-search-result-render-uid'
>
            
            
<div class='coveo-search-section'>
    
    



<script>
    document.addEventListener("CoveoSearchEndpointInitialized", function() {
        var searchboxElement = document.getElementById("global-search-box");
        searchboxElement.addEventListener("CoveoComponentInitialized", function() {
            CoveoForSitecore.initSearchboxIfStandalone(searchboxElement, "/en-us/search-results");
        });
    })
</script>    <div id="global-search-box_container" class="coveo-for-sitecore-search-box-container"
                     data-prebind-maximum-age='currentMaximumAge'
             data-pipeline='default-coveo5'
>
        <div id="global-search-box"
             class="CoveoSearchbox"
                             data-enable-omnibox='true'
                 data-enable-query-suggest-addon='true'
                 data-prebind-maximum-age='currentMaximumAge'
                 data-pipeline='default-coveo5'
                 data-placeholder='What are you looking for?'
                 data-clear-filters-on-new-query='false'
>
            
            
<script type="text/javascript">
    document.addEventListener("CoveoSearchEndpointInitialized", function() {
        var componentId = "global-search-box";
        var componentElement = document.getElementById(componentId);

        function showError(error) {
                console.error(error);
        }

        function areCoveoResourcesIncluded() {
            return typeof (Coveo) !== "undefined";
        }

        if (areCoveoResourcesIncluded()) {
            var event = document.createEvent("CustomEvent");
            event.initEvent("CoveoComponentInitialized", false, true);
            
            setTimeout(function() {
                componentElement.dispatchEvent(event);
            }, 0);
        } else {
            componentElement.classList.add("invalid");
            showError("The Coveo Resources component must be included in this page.");
        }
    });
</script>
            <div class="CoveoForSitecoreBindWithUserContext"></div>
            <div class="CoveoForSitecoreExpressions"></div>
            <div class="CoveoForSitecoreConfigureSearchHub" data-sc-search-hub="search-results"></div>
        </div>
        
    </div>

</div>

        </div>
</div>

    <script type="text/javascript">
        document.addEventListener("CoveoSearchEndpointInitialized", function() {
            var externalComponentsSection = document.getElementById("_A5A9CC7B-F8CE-47F7-9201-54D4727EC4A9");
                 CoveoForSitecore.initExternalComponentsSection(externalComponentsSection);
        });
    </script>

    </div>
</div>
<script>
	function initializeSuggestionBoxClick() {
		
		// Select the node that will be observed for mutations
		const targetNode = document.getElementById('global-search-box');

		// Options for the observer (which mutations to observe)
		const config = { attributes: true, childList: true, subtree: true };

		// Callback function to execute when mutations are observed
		const callback = function(mutationsList, observer) {
		// Loop through each mutation
			for(const mutation of mutationsList) {
				// Check if nodes are added or removed
				if (mutation.type === 'childList') {
					// Loop through added nodes
					mutation.addedNodes.forEach(function(node) {
						// Check if the added node is of interest
						if (node.classList.contains('coveo-omnibox-selectable')) {
							// Do something with the added node
							console.log("coveo-omnibox-selectable added:", node);
							$('#global-search-box .magic-box-suggestions .coveo-magicbox-suggestions .coveo-omnibox-selectable').on('click', function (event) {
								//alert("Redirect");
								$(".main-search--header button.ms__btn.coveo-close").trigger("click");
								RedirectionToSearchPage();
							});
							observer.disconnect();
						}
					});
				}
			}
		};

		// Create an observer instance linked to the callback function
		const observer = new MutationObserver(callback);

		// Start observing the target node for configured mutations
		observer.observe(targetNode, config);

		// Later, you can disconnect the observer
		// observer.disconnect();
	
	}
    //window.addEventListener('load', EnterKeyPress); window.addEventListener('load', GlobalSearchBox);

	// Function to initialize when the input field is loaded
    function initializeWhenLoaded() {
        var targetNode = document.getElementById('global-search-box');

        // Options for the observer (which mutations to observe)
        var config = { childList: true, subtree: true };

        // Callback function to execute when mutations are observed
        var callback = function(mutationsList, observer) {
            for(var mutation of mutationsList) {
                if (mutation.type === 'childList' && mutation.addedNodes.length > 0) {
                    // Check if the added node is the input field we're looking for
                    if ($(mutation.addedNodes[0]).is('input[form="coveo-dummy-form"]')) {
                        // Initialize your function when the input field is added
                        EnterKeyPress();
						GlobalSearchBox();
						MagicBox();
						ClearCoveoBox();
						// Disconnect the observer since we don't need it anymore
                        observer.disconnect();
                    }
                }
            }
        };

        // Create an observer instance linked to the callback function
        var observer = new MutationObserver(callback);

        // Start observing the target node for configured mutations
        observer.observe(targetNode, config);
    }
	function ClearCoveoBox() {
		$('.main-search .ms__btn').on('click', function (event) {
            console.log("ClearCoveoBox");
			$('#global-search-box input[form="coveo-dummy-form"]').val('');
        });
	}
    function EnterKeyPress() {
        $('#global-search-box input[form="coveo-dummy-form"]').on('keydown', function (event) {
            if (event.keyCode == 13) {
                console.log("Enter");
                $(".main-search--header button.ms__btn.coveo-close").trigger("click");
				RedirectionToSearchPage();
            }
        });
    }
    function GlobalSearchBox() {
        $('#global-search-box .CoveoSearchButton').on('click', function (event) {
            console.log("SearchButton");
            $(".main-search--header button.ms__btn.coveo-close").trigger("click");
			RedirectionToSearchPage();
        });
    }

    function RedirectionToSearchPage() {

            var value = $('#global-search-box input[form="coveo-dummy-form"]').val();
			var newUrl ='';
		    // Get the current URL
		    var currentUrl = "/en-us/search-results";

		    // Concatenate the value to the current URL
		    if(value !=''){
		    	newUrl = currentUrl + '#q=' + encodeURIComponent(value); // Ensure proper URL encoding
		    }
		    else{
		    	newUrl = currentUrl;

		    }
			
		    // Redirect to the new URL
		    window.location.href = newUrl;
			//window.location.reload();
    }
	function MagicBox(){
	$('#global-search-box input[form="coveo-dummy-form"]').on('click', function (event) {
			var elClearwidth = $('#global-search-box').width();
			var elpos = $('#global-search-box .magic-box-input input').offset();
			var elpostop= elpos.top +50;
			//console.log(elClearwidth);
			//console.log(elpostop);
			//console.log(elpos.left);
			$("#global-search-box .magic-box-suggestions").css({'width':elClearwidth +'px'});
			$("#global-search-box .magic-box-suggestions").css({'top':elpostop +'px'});
			$("#global-search-box .magic-box-suggestions").css({'left':elpos.left +'px'});
			SuggestionBoxClick();
						
    });
    }
		
	
// Function to handle scroll events
function handleScroll() {

    // Check if the magic-box-hasSuggestion class is present in any child element
    var hasSuggestion = document.querySelector('#main-container .show-search');
    if (hasSuggestion) 
	{        
       $(".magic-box-suggestions").removeClass('magic-box-hasSuggestion');
	   $(".main-search--header button.ms__btn.coveo-close").trigger("click");
	   
	   
    }
	
}
	
	function SuggestionBoxClick(){
		/*alert("SuggestionBoxClick");
		var divExists = $('#global-search-box .magic-box-suggestions .coveo-magicbox-suggestions .coveo-omnibox-selectable').length > 0;
		if (divExists) {
			alert("divExists");
			alert($('#global-search-box .magic-box-suggestions .coveo-magicbox-suggestions .coveo-omnibox-selectable').length > 0);
			$('#global-search-box .magic-box-suggestions .coveo-magicbox-suggestions .coveo-omnibox-selectable').on('click', function (event) {
				alert("Redirect");
				$(".main-search--header button.ms__btn.coveo-close").trigger("click");
				RedirectionToSearchPage();
			});
		}*/
		initializeSuggestionBoxClick();
	}
	// Call the initialization function
    initializeWhenLoaded();
	//initializeSuggestionBoxClick();

    //650 - on click of search icon, the focus & cursor should be inside input text field


    $('.main-search button.ms__btn').on('click', function () {
        setTimeout(function () {
            $('#global-search-box .magic-box-input input[type="text"]').click();
            SuggestionBoxClick();
        }, 1500); // 500ms delay
    });
    $('.main-search button.ms__btn').on('click', function () {
        setTimeout(function () {
            $('#global-search-box .magic-box-input input[type="text"]').focus();
            SuggestionBoxClick();
        }, 500); // 500ms delay
    });
    $('.mobile-nav .main-search button.ms__btn .ms__close-icon').on('click', function () {
        console.log('Removed focus');
        setTimeout(function () {
            //$('#global-search-box .magic-box-input input[type="text"]:focus').blur();
            $('#global-search-box .magic-box-suggestions').removeClass('magic-box-hasSuggestion');
        }, 1000);

    });
</script>
<style>
#global-search-box .magic-box-suggestions{ position : fixed}
</style>

</div>
<style>
    .secondary-nav{float:right;}
</style>
            
        </header>
        <!-- END SEARCHNOINDEX -->
        <main role="main" id="content" class="content-start clearfix">
            


<section class="section section-full m-b-0 bg-dark ft-component ft-structural ft-section">
    
    
    <div class="container-fluid empty-div"></div>
    
<div class="container-fluid full-width ft-component ft-structural ft-one-column">
  <div class="row no-margin">
    <div class="col-md-12 no-padding">
      

<!-- Wrapper -->
<div class=" ft-component ft-structural ft-content-wrapper">


     


<style>
.heroImage{ background-image:  url('/-/media/campaign/global/supercharge-tomorrow/energy-campaign-homepage-banner.png') }
 .mobileHeroImage{ background-image:  url('/-/media/campaign/global/supercharge-tomorrow/energy-campaign-homepage-banner.png') }   </style>

<div class="rebrand-bnr">
    <header id="desktop-header" class="heroImage   mar-bot-banner page-header no-padding bg-parallax banner-video desktop compact703 bg-media Ctr-Ctr-Align ft-component ft-dynamic ft-page-banner-with-media">
        <button id="play-pause-btn">
            <img id="pause-icon" src="/images/icn-pause.png" alt="Pause" border="0" />
            <img id="play-icon" src="/images/icn-play.png" alt="Play" border="0" />
        </button>
        <div class="logo-overlay-pic-on-video"></div>
            <div class="parallax-block">
                <img id="pbk" alt="energy-campaign-homepage-banner" src="/-/media/campaign/global/supercharge-tomorrow/energy-campaign-homepage-banner.png" class="img-media-banner img-parallax" />
            </div>                    <a href="/en-us/campaigns/supercharge-tomorrow" target="_self" class="transparent-layer overlay-black opacity-45"></a>

            <div class="teaser-summary  dark-theme">
        <div class="var-title">
            
            <h1>SUPERCHARGE TOMORROW</h1>
            
        </div>
        

                <div>
                    <a data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Accelerate an energy secure future together','eventLabel':'/en-us/campaigns/supercharge-tomorrow'}" class="btn btn-primary" href="/en-us/campaigns/supercharge-tomorrow" title="Accelerate an energy secure future together" role="button">Accelerate an energy secure future together</a>
                </div>
    </div>

    </header>

    <header id="mobile-header" class="mobileHeroImage  page-header no-padding banner-video mobile  mar-bot-banner bg-media Ctr-Ctr-Align ft-component ft-dynamic ft-page-banner-with-media">
        <button id="mob-play-pause-btn">
            <img id="mob-pause-icon" src="/images/icn-pause.png" alt="Pause" border="0" />
            <img id="mob-play-icon" src="/images/icn-play.png" alt="Play" border="0" />
        </button>
        <div class="logo-overlay-pic"></div>
        <picture class="pgBanner-Image">
                <source media="(max-width: 414px)" srcset="/-/media/campaign/global/supercharge-tomorrow/energy-campaign-homepage-banner.png">
                <!-- Mobile Image -->                             <img src="/-/media/campaign/global/supercharge-tomorrow/energy-campaign-homepage-banner.png" alt="energy-campaign-homepage-banner">
                <!-- Desktop Image -->         </picture>                     <a href="/en-us/campaigns/supercharge-tomorrow" target="_self" class="transparent-layer overlay-black opacity-45"></a>
                    <div class="teaser-summary  dark-theme">
        <div class="var-title">
            
            <h1>SUPERCHARGE TOMORROW</h1>
            
        </div>
        

                <div>
                    <a data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Accelerate an energy secure future together','eventLabel':'/en-us/campaigns/supercharge-tomorrow'}" class="btn btn-primary" href="/en-us/campaigns/supercharge-tomorrow" title="Accelerate an energy secure future together" role="button">Accelerate an energy secure future together</a>
                </div>
    </div>

    </header>
</div>
<input type="hidden" name="Overlay" id="Overlay" value="" />



<script id="ft-script-page-header-with-media">
    $(window).on('load', function () {
        //$(document).ready(function () { //This fails to read the height of video

        if (document.getElementById("Overlay").value == 'dark-theme') {
            document.getElementById("mobile-header").classList.add("overlay");
            document.getElementById("desktop-header").classList.add("overlay");
            document.getElementById("mobile-header").classList.remove("without-overlay");
            document.getElementById("desktop-header").classList.remove("without-overlay");

        }
        if (document.getElementById("Overlay").value == 'light-theme') {
            document.getElementById("mobile-header").classList.add("overlay-transparent");
            document.getElementById("desktop-header").classList.add("overlay-transparent");
        }
        var newImg = new Image();
        var element = document.getElementById("pbk");
        var vid = document.getElementById("page-banner-vid");
        if (vid != null) {

            var curVidHeight = vid.videoHeight;
            //alert(curVidHeight);
            if (curVidHeight <= 705) {
                //document.getElementById("desktop-header").classList.add("compact703");
            }
            if (curVidHeight >= 706 && curVidHeight <= 740) {
                document.getElementById("desktop-header").classList.add("compact715");
                document.getElementById("desktop-header").classList.remove("compact703");


            }
            if (curVidHeight > 740) {
              //  document.getElementById("desktop-header").classList.remove("compact703");
            }
            if (curVidHeight >= 830 && curVidHeight <= 850) {
                document.getElementById("desktop-header").classList.add("compact846");
                document.getElementById("desktop-header").classList.remove("compact703");

            }
            if (curVidHeight >= 910 && curVidHeight <= 950) {
                document.getElementById("desktop-header").classList.add("compact930");
                document.getElementById("desktop-header").classList.remove("compact703");

            }

        }
        if (element !== null) {

            newImg.src = element.src;
            var curHeight = newImg.height;
            if (curHeight <= 705) {
                //document.getElementById("desktop-header").classList.add("compact703");
            }
            if (curHeight >= 706 && curHeight <= 740) {
                document.getElementById("desktop-header").classList.add("compact715");
                document.getElementById("desktop-header").classList.remove("compact703");


            }
            if (curHeight > 740) {
              //  document.getElementById("desktop-header").classList.remove("compact703");
            }
            if (curHeight >= 830 && curHeight <= 850) {
                document.getElementById("desktop-header").classList.add("compact846");
                document.getElementById("desktop-header").classList.remove("compact703");

            }
            if (curHeight >= 910 && curHeight <= 950) {
                document.getElementById("desktop-header").classList.add("compact930");
                document.getElementById("desktop-header").classList.remove("compact703");

            }

        }

    });
    function MyFun(id) {
        document.getElementById('redirectUrl').value = document.getElementById(id).value;
        $('#disclaimer01').modal('show');
    }
</script>
<style>
    header.banner-video.mobile h1.page-title {
        display: none;
    }

    /* Text fade-in and slide-up animation on Page Banner - start */
    @keyframes slide-in-text-up {
        from {
            padding-top: 220px;
            opacity: 0;
        }

        to {
            padding-top: 0;
            opacity: 1;
        }
    }

    .txt-anim-page-banner {
        /*animation: slide-in-text-up 1.4s;
        animation-delay: 1s;
        animation-fill-mode: backwards;*/
    }


    @keyframes slide-in-text-up-from-bottom {
        from {
            margin-bottom: -100px;
            opacity: 0;
        }

        to {
            margin-bottom: 0;
            opacity: 1;
        }
    }

    .Left-Btm-Align .txt-anim-page-banner, .Ctr-Btm-Align .txt-anim-page-banner {
        /*animation: slide-in-text-up-from-bottom 1.4s;
        animation-delay: 1s;
        animation-fill-mode: backwards;*/
    }

    /* Text fade-in and slide-up animation on Page Banner - end */



    #play-pause-btn, #mob-play-pause-btn {
        position: absolute;
        bottom: 15px;
        right: 15px;
        background-color: transparent;
        border: 0 none;
        border-radius: 0;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        outline: none;
        z-index: 101;
    }

        #play-pause-btn:hover, #mob-play-pause-btn:hover {
            background-color: transparent;
        }


    #play-icon, #mob-play-icon {
        display: none;
    }

    .rebrand-bnr {
        position: relative;
    }


    @media (max-width:414px) {
        #mob-play-pause-btn {
            display: none !important;
        }
    }

    @media (max-width:991px) {
        main > .section:first-child, main > section:first-child {
            padding-top: 0;
        }

        .rebrand-bnr header.page-header .teaser-summary h1 {
            margin-bottom: 32px !important;
        }
    }

    @media (min-width:992px) {
        main > .section:first-child, main > section:first-child {
            padding-top: 30px;
        }

        .rebrand-bnr header.page-header .teaser-summary {
            padding-left: 84px;
            padding-right: 84px;
            max-width: 100%;
        }

            .rebrand-bnr header.page-header .teaser-summary h1 {
                margin-bottom: 32px !important;
            }
    }


    @media (min-width:1200px) {
        main > .section:first-child, main > section:first-child {
            padding-top: 56px;
        }

        .rebrand-bnr header.page-header .teaser-summary {
            padding-left: 84px;
            padding-right: 84px;
            max-width: 100%;
        }

            .rebrand-bnr header.page-header .teaser-summary h1 {
                margin-bottom: 48px;
            }
    }

    .no-video {
        display: none !important;
    }
</style>
<script>
    setTimeout(function () {
        const dskvideo = document.getElementById('page-banner-vid');
        const dskbutton = document.getElementById('play-pause-btn');
        const dskplayIcon = document.getElementById('play-icon');
        const dskpauseIcon = document.getElementById('pause-icon');

        // Function to toggle the visibility of the play/pause button based on video state
        const toggleButtonVisibility = () => {
            if (!dskvideo.paused) {
                dskbutton.style.display = 'flex'; // Show the button when video is playing
            } else {
                dskbutton.style.display = 'none'; // Hide the button when video is paused
            }
        };


        dskbutton.addEventListener('click', () => {
            if (dskvideo.paused) {
                dskvideo.play();
                dskplayIcon.style.display = 'none';
                dskpauseIcon.style.display = 'block';
            } else {
                dskvideo.pause();
                dskplayIcon.style.display = 'block';
                dskpauseIcon.style.display = 'none';
            }
        });
        // Initialize button visibility on page load
        toggleButtonVisibility();
    }, 3000);
</script>
<script>
    setTimeout(function () {
        const mobvideo = document.querySelector('.mob-video-hidden.desktop-video');
        const mobbutton = document.getElementById('mob-play-pause-btn');
        const mobplayIcon = document.getElementById('mob-play-icon');
        const mobpauseIcon = document.getElementById('mob-pause-icon');

        // Function to toggle the visibility of the play/pause button based on video state
        const togglemobButtonVisibility = () => {
            if (!mobvideo.paused) {
                mobbutton.style.display = 'flex'; // Show the button when video is playing
            } else {
                mobbutton.style.display = 'none'; // Hide the button when video is paused
            }
        };

        mobbutton.addEventListener('click', () => {
            if (mobvideo.paused) {
                mobvideo.play();
                mobplayIcon.style.display = 'none';
                mobpauseIcon.style.display = 'block';
            } else {
                mobvideo.pause();
                mobplayIcon.style.display = 'block';
                mobpauseIcon.style.display = 'none';
            }
        });
        // Initialize button visibility on page load
        togglemobButtonVisibility();
    }, 3000);
</script>
<script>
    function adjustBannerPadding() {
        const firstMainSection = document.querySelector('main > .section:first-child, main > section:first-child');
        if (document.body.classList.contains('rebrand-bnr') && firstMainSection) {
            if (window.innerWidth >= 415) {
                firstMainSection.style.paddingTop = '56px';
            } else {
                firstMainSection.style.paddingTop = '0';
            }
        }
    }

    // Run on page load and window resize
    adjustBannerPadding();
    window.addEventListener('resize', adjustBannerPadding);
</script>
<script>
    $(document).ready(function () {
        if (!$('#desktop-header').hasClass('video-file')) {
            $('#play-pause-btn').addClass('no-video');
        }
    });
</script>


</div>
    </div>
  </div>
</div>

<!-- Wrapper -->
<div class="big-padding ft-component ft-structural ft-content-wrapper">


     
<div class="container-fluid  ft-component ft-structural ft-two-column-8-4">
  <div class="row">
    <div class="col-md-8">
      

<!-- Wrapper -->
<div class="medium-margin-children ft-component ft-structural ft-content-wrapper">


     <section class="section section-full orange-title discover-wsp">
    <div class="container-fluid">
        <div class="row teaser-summary">
            <div class="col-xs-12">
                <div>
                        <div class="row">
                            <div class="col-sm-12 col-md-9 var-text para-line-height">WSP is one of the world's leading professional services firms, uniting our engineering, advisory and science-based expertise to make a positive impact. We envision future possibilities and bring them to life through technical know-how and innovation.</div>
                            <div class="col-xs-12">



                                <a href="/en-us/who-we-are" title="Who we are" role="button" class="btn btn-secondary U--mb--0 m-t-48d-32m m-b-96d-80m">Who we are <span class='icn-arrow-small-blue'></span></a>

                            </div>
                        </div>
                </div>
            </div>
        </div>
    </div>
</section>


</div>
    </div>
    <div class="col-md-4 col-narrow">
      

<!-- Wrapper -->
<div class=" ft-component ft-structural ft-content-wrapper">


     <section class="section section-full hom-key-facts">
    <div class="container-fluid">
        <div class="row">
            <div class="col-xs-12">
                        <div>
                            <p>Employees worldwide</p>
                            <div class="numbers">75,000</div>
                        </div>
                        <div>
                            <p>Active projects on all continents</p>
                            <div class="numbers">200,000</div>
                        </div>
            </div>
        </div>
    </div>
</section>



</div>
    </div>
  </div>
</div>


</div>
</section>


<section class="section section-full   ft-component ft-structural ft-section">
    
    
    <div class="container-fluid empty-div"></div>
    
<div class="container-fluid full-width ft-component ft-structural ft-one-column">
  <div class="row no-margin">
    <div class="col-md-12 no-padding">
      

<!-- Wrapper -->
<div class=" ft-component ft-structural ft-content-wrapper">


     
<!-- component starts here -->
<div class="container-fluid big-padding">
    <div class="row teaser-summary what-we-do ">
        <div class="col-xs-12 m-t-96d-80m m-b-2">
            <h2 class="title-h2-48 m-t-0">Shaping the future</h2>
        </div>
        <div class="clear"></div>
    </div>
</div>

<div class="row teaser-summary what-we-do m-b-72d-48m">
    <div class="col-xs-12">
        <div class="owl-carousel owl-theme what-we-do-carousel">
            <div class="item">
                <a href="/en-us/hubs/property-and-buildings" class="box-link" title="Property and Buildings">
                    <div class="news-text">
                        <div class="thumbnail"><img class="img-responsive" src="/-/media/datasources/feature-areas/global/rebranded/thn-website-what-we-do-property-buildings-modern-red-facade-windows-architectural-design.jpg" loading="lazy" disablewebedit="True"></div>
                        <div class="title-h4"><div class="caption">Property and Buildings</div>
                            
                        </div>
                    </div>
                </a>
            </div>
            <div class="item">
                <a href="/en-us/sectors/earth-and-environment" class="box-link" title="Earth and Environment">
                    <div class="news-text">
                        <div class="thumbnail"><img class="img-responsive" src="/-/media/datasources/feature-areas/global/rebranded/thn-website-what-we-do-earth-environment-fresh-new-leaves-japanese-acer-tree.jpg" loading="lazy" disablewebedit="True"></div>
                        <div class="title-h4"><div class="caption">Earth and Environment</div>
                            
                        </div>
                    </div>
                </a>
            </div>
            <div class="item">
                <a href="/en-us/hubs/transportation" class="box-link" title="Transportation">
                    <div class="news-text">
                        <div class="thumbnail"><img class="img-responsive" src="/-/media/datasources/feature-areas/global/rebranded/thn-transport-infrastructure-above-view-of-taxi-driving-through-a-crossing-in-japan.jpg" loading="lazy" disablewebedit="True"></div>
                        <div class="title-h4"><div class="caption">Transportation</div>
                            
                        </div>
                    </div>
                </a>
            </div>
            <div class="item">
                <a href="/en-us/hubs/water" class="box-link" title="Water">
                    <div class="news-text">
                        <div class="thumbnail"><img class="img-responsive" src="/-/media/datasources/feature-areas/global/rebranded/thn-website-what-we-do-water-aerial-view-drinking-water-treatment-plant.jpg" loading="lazy" disablewebedit="True"></div>
                        <div class="title-h4"><div class="caption">Water</div>
                            
                        </div>
                    </div>
                </a>
            </div>
            <div class="item">
                <a href="/en-us/hubs/energy-and-resources" class="box-link" title="Energy">
                    <div class="news-text">
                        <div class="thumbnail"><img class="img-responsive" src="/-/media/datasources/feature-areas/global/rebranded/thn-website-what-we-do-energy-close-up-solar-panels.jpg" loading="lazy" disablewebedit="True"></div>
                        <div class="title-h4"><div class="caption">Energy</div>
                            
                        </div>
                    </div>
                </a>
            </div>
            <div class="item">
                <a href="/en-us/hubs/federal-programs" class="box-link" title="Federal Programs">
                    <div class="news-text">
                        <div class="thumbnail"><img class="img-responsive" src="/-/media/datasources/feature-areas/global/rebranded/thn-website-what-we-do-federal-abstract-view-of-fluted-columns-bases-steps-us-federal-building.jpg" loading="lazy" disablewebedit="True"></div>
                        <div class="title-h4"><div class="caption">Federal Programs</div>
                            
                        </div>
                    </div>
                </a>
            </div>
            <div class="item">
                <a href="/en-us/hubs/advisory-services" class="box-link" title="Advisory">
                    <div class="news-text">
                        <div class="thumbnail"><img class="img-responsive" src="/-/media/datasources/feature-areas/global/rebranded/thn-website-what-we-do-advisory-colleagues-discussing-lobby-office.jpg" loading="lazy" disablewebedit="True"></div>
                        <div class="title-h4"><div class="caption">Advisory</div>
                            
                        </div>
                    </div>
                </a>
            </div>
            </div>
    </div>
</div>
<script>
    $(document).ready(function () {
        $('.what-we-do-carousel').owlCarousel({
            //stagePadding: 80,
            // loop: true,
            margin: 25,
            // nav: true,
            smartSpeed: 800,
            responsiveClass: true,
            responsive: {
                0: {
                    items: 1,
                    loop: true,
                    nav: false,
                    margin: 20,
                    stagePadding: 40
                },
                768: {
                    items: 2,


                    loop: true,
                    nav: false,

                    stagePadding: 35
                },

                1024: {
                    items: 3,

                    touchDrag: false,
                    mouseDrag: false,
                    loop: true,
                    nav: true,

                    stagePadding: 41
                },
                1152: {
                    items: 3,

                    touchDrag: false,
                    mouseDrag: false,
                    loop: true,
                    nav: true,

                    stagePadding: 46
                },
                1280: {
                    items: 3,

                    touchDrag: false,
                    mouseDrag: false,
                    loop: true,
                    nav: true,

                    stagePadding: 51.2
                },
                1360: {
                    items: 3,

                    touchDrag: false,
                    mouseDrag: false,
                    loop: true,
                    nav: true,

                    stagePadding: 54
                },
                1366: {
                    items: 3,

                    touchDrag: false,
                    mouseDrag: false,
                    loop: true,
                    nav: true,

                    stagePadding: 54.5
                },
                1400: {
                    items: 3,

                    touchDrag: false,
                    mouseDrag: false,
                    loop: true,
                    nav: true,

                    stagePadding: 55
                },
                1440: {
                    items: 3,

                    touchDrag: false,
                    mouseDrag: false,
                    loop: true,
                    nav: true,

                    stagePadding: 60
                },
                1510: {
                    items: 3,

                    touchDrag: false,
                    mouseDrag: false,
                    loop: true,
                    nav: true,

                    stagePadding: 75
                },
                1570: {
                    items: 3,

                    touchDrag: false,
                    mouseDrag: false,
                    loop: true,
                    nav: true,

                    stagePadding: 110
                },
                1600: {
                    items: 3,

                    touchDrag: false,
                    mouseDrag: false,
                    loop: true,
                    nav: true,

                    stagePadding: 115
                },
                1650: {
                    items: 3,

                    touchDrag: false,
                    mouseDrag: false,
                    loop: true,
                    nav: true,

                    stagePadding: 150
                },
                1680: {
                    items: 3,

                    touchDrag: false,
                    mouseDrag: false,
                    loop: true,
                    nav: true,

                    stagePadding: 155
                },
                1860: {
                    items: 3,

                    touchDrag: false,
                    mouseDrag: false,
                    loop: true,
                    nav: true,

                    stagePadding: 265
                },
                1920: {
                    items: 3,

                    touchDrag: false,
                    mouseDrag: false,
                    loop: true,
                    nav: true,

                    stagePadding: 275
                },
                2040: {
                    items: 3,

                    touchDrag: false,
                    mouseDrag: false,
                    loop: true,
                    nav: true,

                    stagePadding: 338
                },
                2140: {
                    items: 3,

                    touchDrag: false,
                    mouseDrag: false,
                    loop: true,
                    nav: true,

                    stagePadding: 390
                },
                2450: {
                    items: 3,

                    touchDrag: false,
                    mouseDrag: false,
                    loop: true,
                    nav: true,

                    stagePadding: 545
                },
                2500: {
                    items: 3,

                    touchDrag: false,
                    mouseDrag: false,
                    loop: true,
                    nav: true,

                    stagePadding: 570
                },
                2560: {
                    items: 3,

                    touchDrag: false,
                    mouseDrag: false,
                    loop: true,
                    nav: true,

                    stagePadding: 575
                },
                3750: {
                    items: 3,

                    touchDrag: false,
                    mouseDrag: false,
                    loop: true,
                    nav: true,

                    stagePadding: 1240
                }
            }
        })
    })

    window.addEventListener('load', function () {
        var wWidth = $(window).width();
        if (wWidth > 991) {
            setTimeout(function () {
                $(".what-we-do .owl-stage").addClass('initial');
                $(".what-we-do .owl-item.cloned").addClass('vis-hidden');
                //  SetPositionOfFirstItem();
                SetNavPosition();
                owlStageWidth();
                DisablePrevArrow();
            }, 2000); //  delay
        }
    });

    function DisablePrevArrow() {
        $(".what-we-do .owl-prev").addClass('disabled');
    }

    /* Fix for high resolution - adds 1000 px to owl-stage to adjust increase in left padding */
    function owlStageWidth() {
        // Select the element with class 'owl-stage'
        const owlStage = document.querySelector(".what-we-do .owl-stage");

        if (owlStage) {
            // Get the current width (inline style or computed style)
            let currentWidth = parseFloat(owlStage.style.width) || owlStage.offsetWidth;
            // console.log(`Current width of .owl-stage: ${currentWidth}px`);
            // Add 1000 to the width
            let newWidth = currentWidth + 1000;

            // Apply the new width as an inline style
            owlStage.style.width = `${newWidth}px`;

            // console.log(`Updated width of .owl-stage: ${newWidth}px`);
        } else {
            //  console.log(".owl-stage element not found.");
        }
    }



    function SetNavPosition() {
        var wWidth = $(window).width();
        // console.log("Window Width: ", wWidth);

        var emptyDiv = $('.container-fluid.empty-div');
        if (emptyDiv.length > 0) {
            var owlNavPosition = emptyDiv.offset();
            var owlNavWidth = emptyDiv.outerWidth();
            var owlNavRpos = wWidth - (owlNavPosition.left + owlNavWidth); // Calculate right position
            //console.log("Right Position: ", owlNavRpos);

            // Set margin-right on the carousel navigation button box
            if (wWidth > 1499) {
                $(".what-we-do .owl-nav").css("margin-right", owlNavRpos + "px");
                $(".what-we-do .owl-nav").css("right", "0");
            } else {
                $(".what-we-do .owl-nav").css("margin-right", "");
                $(".what-we-do .owl-nav").css("right", "");
            }
        } else {
            //console.warn("Empty div not found.");
        }
    }

    $(window).on("resize", function () {
        if ($(".what-we-do .owl-stage").hasClass("initial")) {
            setTimeout(function () {
                //SetPositionOfFirstItem();
                $(".what-we-do .owl-item.cloned").removeClass('vis-hidden').addClass('vis-hidden');
            }, 1000);
        }
        setTimeout(function () {
            //SetNavPosition();
            owlStageWidth();
        }, 1000); // 1-second delay
    });
    $(document).on("click", ".what-we-do .owl-next, .what-we-do .owl-prev", function () {

        if ($(".what-we-do .owl-stage").hasClass("initial")) {
            // Remove 'initial' class from .owl-stage inside .what-we-do
            $(".what-we-do .owl-stage").removeClass("initial");
            // Remove the margin-left style from all .owl-item elements inside .owl-stage
            $(".what-we-do .owl-stage .owl-item").css("margin-left", "");
            setTimeout(function () { $(".what-we-do .owl-stage .owl-item").removeClass('vis-hidden'); }, 1000); // add this to avoid flicker after clicking on Prev/Next button when vis-hidden elements get visible
        }

    });
</script>
<div class="row teaser-summary what-we-do container-fluid big-padding">
    <div class="col-xs-12 col-sm-12 col-md-8 col-lg-8 m-b-96d-80m var-p-l-0">
        <p class="para-text m-b-0">We combine future-focused thinking and technical know-how to power local impact. Our teams develop deep understanding and a partnership of trust with our clients. We inspire, guide, collaborate and deliver across over 100 sectors and services.</p>
        

        <a href="/en-us/what-we-do" title="More on our expertise" role="button" class="btn btn-secondary m-t-48d-32m m-b-0">What we do</a>
    </div>
    <div class="clear"></div>
</div>
<!-- component ends here -->


</div>
    </div>
  </div>
</div>
</section>


<section class="section section-full   ft-component ft-structural ft-section">
    
    
    <div class="container-fluid empty-div"></div>
    

<!-- Wrapper -->
<div class=" ft-component ft-structural ft-content-wrapper">


     
<div class="container-fluid full-width ft-component ft-structural ft-one-column">
  <div class="row no-margin">
    <div class="col-md-12 no-padding">
      

<section class="section section-full m-b-96d-80m mxt">
    <div class="container-fluid home-featured-carousel-empty-div"></div> <!-- Do not delete this empty div -->
    <div class="container-fluid full-width">
        <div class="row home-featured-carousel-container">
                <div class="big-padding hidden-md hidden-lg"><div class="col-xs-12"><div class="title-h2-48 m-b-2">Pioneering projects</div></div><div class="clear"></div></div>
                <div class="col-md-7 width-var">

                    <div class="owl-carousel owl-theme home-featured-carousel">
                                <div class="item">
                                    <div class="project-list">
                                        <div class="news-text">
                                            <a href="/en-us/projects/smartwhales" title="smartWhales" tabindex="-1" class="box-link" aria-hidden="true">
                                                <div class="thumbnail var-img" style="background-image: url('/-/media/project/global/image/2025/smartwhales/bnr-1920x750.png');">
<img class="img-responsive" src="/images/transparent-898-544.png" disablewebedit="True">                                                </div>
                                                <div class="caption m-b-0">
                                                    <span class="case-study m-b-1">Canada </span>
                                                    <div class="title-h4 text_2lines txt-pad-var">smartWhales</div>
                                                </div>
                                            </a>
                                        </div>
                                    </div>
                                </div>
                                <div class="item">
                                    <div class="project-list">
                                        <div class="news-text">
                                            <a href="/en-us/projects/one-zaabeel" title="One Za’abeel" tabindex="-1" class="box-link" aria-hidden="true">
                                                <div class="thumbnail var-img" style="background-image: url('/-/media/project/global/image/2025/one-zaabeel/bnr-1920x750.png');">
<img class="img-responsive" src="/images/transparent-898-544.png" disablewebedit="True">                                                </div>
                                                <div class="caption m-b-0">
                                                    <span class="case-study m-b-1">Dubai, United Arab Emirates </span>
                                                    <div class="title-h4 text_2lines txt-pad-var">One Za’abeel</div>
                                                </div>
                                            </a>
                                        </div>
                                    </div>
                                </div>
                                <div class="item">
                                    <div class="project-list">
                                        <div class="news-text">
                                            <a href="/en-us/projects/giant-magellan-telescope" title="The Giant Magellan Telescope" tabindex="-1" class="box-link" aria-hidden="true">
                                                <div class="thumbnail var-img" style="background-image: url('/-/media/project/global/image/2025/giant-magellan-telescope/bnr-giant-magellan-telescope.png');">
<img class="img-responsive" src="/images/transparent-898-544.png" disablewebedit="True">                                                </div>
                                                <div class="caption m-b-0">
                                                    <span class="case-study m-b-1">Atacama Desert, Chile </span>
                                                    <div class="title-h4 text_2lines txt-pad-var">The Giant Magellan Telescope</div>
                                                </div>
                                            </a>
                                        </div>
                                    </div>
                                </div>
                                <div class="item">
                                    <div class="project-list">
                                        <div class="news-text">
                                            <a href="/en-us/projects/the-lindemann-performing-arts-center" title="The Lindemann Performing Arts Center" tabindex="-1" class="box-link" aria-hidden="true">
                                                <div class="thumbnail var-img" style="background-image: url('/-/media/project/global/image/2025/lindemann-performing-arts-center/bnr-lindemann-performing-arts-center.png');">
<img class="img-responsive" src="/images/transparent-898-544.png" disablewebedit="True">                                                </div>
                                                <div class="caption m-b-0">
                                                    <span class="case-study m-b-1">Providence, Rhode Island, USA </span>
                                                    <div class="title-h4 text_2lines txt-pad-var">The Lindemann Performing Arts Center</div>
                                                </div>
                                            </a>
                                        </div>
                                    </div>
                                </div>
                                <div class="item">
                                    <div class="project-list">
                                        <div class="news-text">
                                            <a href="/en-us/projects/sydney-metro" title="Sydney Metro" tabindex="-1" class="box-link" aria-hidden="true">
                                                <div class="thumbnail var-img" style="background-image: url('/-/media/project/global/image/2025/sydney-metro/bnr-sydney-metro.png');">
<img class="img-responsive" src="/images/transparent-898-544.png" disablewebedit="True">                                                </div>
                                                <div class="caption m-b-0">
                                                    <span class="case-study m-b-1">Sydney, Australia </span>
                                                    <div class="title-h4 text_2lines txt-pad-var">Sydney Metro</div>
                                                </div>
                                            </a>
                                        </div>
                                    </div>
                                </div>
                                <div class="item">
                                    <div class="project-list">
                                        <div class="news-text">
                                            <a href="/en-us/projects/franklin-98-living-shorelines" title="Franklin-98 Living Shorelines" tabindex="-1" class="box-link" aria-hidden="true">
                                                <div class="thumbnail var-img" style="background-image: url('/-/media/project/global/image/2025/franklin-98-living-shorelines/bnr-franklin-98-living-shorelines.png');">
<img class="img-responsive" src="/images/transparent-898-544.png" disablewebedit="True">                                                </div>
                                                <div class="caption m-b-0">
                                                    <span class="case-study m-b-1">Apalachicola Bay, Florida, USA </span>
                                                    <div class="title-h4 text_2lines txt-pad-var">Franklin-98 Living Shorelines</div>
                                                </div>
                                            </a>
                                        </div>
                                    </div>
                                </div>
                                <div class="item">
                                    <div class="project-list">
                                        <div class="news-text">
                                            <a href="/en-us/projects/he-ara-kotahi-bridge-and-pathway" title="He Ara Kotahi" tabindex="-1" class="box-link" aria-hidden="true">
                                                <div class="thumbnail var-img" style="background-image: url('/-/media/project/global/image/2025/he-ara-kotahi/bnr-he-ara-kotahi.png');">
<img class="img-responsive" src="/images/transparent-898-544.png" disablewebedit="True">                                                </div>
                                                <div class="caption m-b-0">
                                                    <span class="case-study m-b-1">Palmerston North, New Zealand </span>
                                                    <div class="title-h4 text_2lines txt-pad-var">He Ara Kotahi</div>
                                                </div>
                                            </a>
                                        </div>
                                    </div>
                                </div>
                                <div class="item">
                                    <div class="project-list">
                                        <div class="news-text">
                                            <a href="/en-us/projects/manchester-airport-pier-2" title="Kit of Parts" tabindex="-1" class="box-link" aria-hidden="true">
                                                <div class="thumbnail var-img" style="background-image: url('/-/media/project/global/image/2025/kit-of-parts/bnr-kit-of-parts.png');">
<img class="img-responsive" src="/images/transparent-898-544.png" disablewebedit="True">                                                </div>
                                                <div class="caption m-b-0">
                                                    <span class="case-study m-b-1">Manchester, North West England, UK </span>
                                                    <div class="title-h4 text_2lines txt-pad-var">Kit of Parts</div>
                                                </div>
                                            </a>
                                        </div>
                                    </div>
                                </div>
                    </div>

                </div>
                <div class="col-md-4 relative">
                    <div class="home-featured-carousel-text-box ">
                        <div class="w-300">
                            <div class="teaser-summary">
                                <h2 class="title-h2-48  hidden-xs hidden-sm">Pioneering projects</h2>

                                <p class="limit-4 f-25-20 m-t-m32 clear">Across the globe, we work with clients to dream big, challenge conventions and transform our world for the better.</p>


                                <a href="/en-us/projects" title="View all projects" role="button" class="btn btn-secondary m-t-1">View all projects</a>
                            </div>
                        </div>
                    </div>
                    <div class="owl-nav-box-wrapper"><div class="owl-nav-container"><div class="owl-nav-buttons-wrapper"></div><div class="owl-nav-numbers-wrapper"><div id="home-featured-carousel-counter"></div></div></div></div>
                </div>
        </div>
    </div>
</section>


<script>
    $(document).ready(function () {

        $('.home-featured-carousel').owlCarousel({
            stagePadding: 50,
            loop: true,
            margin: 10,
            smartSpeed: 800,
            //animateIn: 'fadeIn', // add this
            //animateOut: 'fadeOut', // and this
            responsiveClass: true,
            onInitialized: counter,
            onChanged: counter,
            responsive: {
                0: {
                    items: 1,
                    /*loop: true,*/
                    nav: false,
                    margin: 20,
                    stagePadding: 40
                },
                768: {
                    items: 1,
                    /* loop: true,*/
                    nav: false,
                    margin: 20,
                    stagePadding: 50
                },
                992: {
                    items: 1,
                    /*loop: true,*/
                    nav: true,
                    //touchDrag: false,
                    //mouseDrag: false,
                    margin: 20,
                    stagePadding: 0
                },
                1200: {
                    items: 1,
                    nav: true,
                    //touchDrag: false,
                    //mouseDrag: false,
                    /*loop: true,*/
                    margin: 20,
                    stagePadding: 0
                }

            }
        })
    })

    function counter(event) {
        if (!event.namespace) {
            return;
        }
        var slides = event.relatedTarget;
        $('#home-featured-carousel-counter').html(slides.relative(slides.current()) + 1 + '<span class="m-l-r-10">—</span>' + slides.items().length);

    }

    function owlnavClick() {

        const windowWidth = window.innerWidth;
        if (windowWidth >= 992) {
            $(".owl-nav-box-wrapper .owl-prev").trigger('click');

            setTimeout(function () {
                $(".owl-nav-box-wrapper .owl-next").trigger('click');

            }, 850);
        }
    }

    //window.addEventListener('resize', owlnavClick);

    /* Fix for high resolution - adds 1000 px to owl-stage to adjust increase in left padding */
    function ProjectowlStageWidth() {
        // Select the element with class 'owl-stage'
        const projowlStage = document.querySelector(".home-featured-carousel .owl-stage");

        if (projowlStage) {
            // Get the current width (inline style or computed style)
            let currentWidth = parseFloat(projowlStage.style.width) || projowlStage.offsetWidth;
            // console.log(`Current width of .owl-stage: ${currentWidth}px`);
            // Add 1000 to the width
            let newWidth = currentWidth + 2000;

            // Apply the new width as an inline style
            projowlStage.style.width = `${newWidth}px`;
            //$('.home-featured-carousel').owlCarousel.trigger('refresh.home-featured-carousel');

            // console.log(`Updated width of .owl-stage: ${newWidth}px`);
        } else {
            //  console.log(".owl-stage element not found.");
        }
    }

    function adjustOwlNavPosition() {
        // Get the height of the thumbnail
        const thumbnail = document.querySelector('.home-featured-carousel-container .home-featured-carousel .thumbnail img');
        const rgtcontbox = document.querySelector('.home-featured-carousel-text-box');
        const owlNavPositionbox = document.querySelector('.owl-nav-box-wrapper');

        if (thumbnail && owlNavPositionbox) {
            let imageHeight = thumbnail.offsetHeight - rgtcontbox.offsetHeight - 41; // Get the current height of the image

            if (imageHeight >= 0) {
                // alert("Hi");

                // Check if the window width is between 1200px and 1350px
                const windowWidth = window.innerWidth;
                if (windowWidth >= 992 && windowWidth <= 1100) {
                    imageHeight += 60; // Add extra 50px to the top position
                }

                owlNavPositionbox.style.top = `${imageHeight}px`; // Apply the height as the top position
            }

            if (imageHeight < 0) {
                owlNavPositionbox.style.top = `100px`; // Apply the height as the top position
            }
        }
    }

    window.addEventListener('load', function () {
        // Move the .owl-nav element under the .owl-nav-box-wrapper div
        setTimeout(function () {
            $('.home-featured-carousel-container .home-featured-carousel .owl-nav').appendTo('.owl-nav-buttons-wrapper');
            $(".owl-nav-box-wrapper .owl-prev").addClass('disabled');
            // ProjectowlStageWidth(); //Increase owl-stage width by 1000px to fix gap issue in low / high resolutions
        }, 3000);
        //console.log('onload2k');


    });
    setTimeout(function () {
        // owlNavigationbuttonActions();
        ProjectowlStageWidth();
        adjustOwlNavPosition();
    }, 4000);

    $(window).on("resize", function () {
        setTimeout(function () {
            ProjectowlStageWidth();
            owlnavClick();
            adjustOwlNavPosition();
            //$('.home-featured-carousel').owlCarousel.trigger('refresh.home-featured-carousel');
        }, 300); // 1-second delay
    });
</script>

<style>
    .owl-nav-box-wrapper {       
        position: relative;
        left: 0;
        bottom: 0;        
    }

    .owl-nav-container {
        display: flex; /* Aligns children side by side */
        align-items: center; /* Align items vertically */
        gap: 10px; /* Optional: Add space between elements */
    }
    .owl-nav-buttons-wrapper {
        display: flex;
        justify-content: center; /* Center the buttons horizontally */
        align-items: center; /* Center the buttons vertically */
    }
    .owl-nav-numbers-wrapper {
        display: flex;
        justify-content: center; /* Center the numbers horizontally */
        align-items: center; /* Center the numbers vertically */
        font-size: 16px; /* Adjust font size if necessary */
        margin-left:1vw;
    }
    
    #current-count{
        display:none;
    }

    .m-l-r-10 {
        margin-left: 10px;
        margin-right: 10px;
    }
    @media (min-width:992px) {
        .mxt {
            max-height: 700px;
            overflow: hidden;
        }
    }

    @media (min-width:992px){
        .txt-pad-var{padding-right:5vw}
    }
    @media (min-width:1200px) {
        .txt-pad-var {
            padding-right: 4vw
        }
    }
    @media (min-width:1500px) {
        .txt-pad-var {
            padding-right: 6vw
        }
    }
    @media (min-width:1650px) {
        .txt-pad-var {
            padding-right: 10vw
        }
    }
    @media (min-width:1900px) {
        .txt-pad-var {
            padding-right: 15vw
        }
    }
</style>
    </div>
  </div>
</div>


</div>
</section>


<section class="section section-full m-b-0 bg-dark ft-component ft-structural ft-section">
    
    
    <div class="container-fluid empty-div"></div>
    
<div class="container-fluid full-width ft-component ft-structural ft-one-column">
  <div class="row no-margin">
    <div class="col-md-12 no-padding">
      

<!-- Wrapper -->
<div class="big-padding ft-component ft-structural ft-content-wrapper">


     <!-- Insight - start - Innovative thinking -->
<!--component starts here-->
<div class="teaser-summary m-t-96d-80m">
    <div class="resp-2-col">
        <div class="left">
            <h2 class="title-h2-48">Innovative thinking</h2>
        </div>
        <div class="right hidden-xs hidden-sm"><a href="https://www.wsp.com/en-us/insights-results-page" class="btn btn-secondary m-t-0 m-r-0 m-b-0" title="Read all insights">Read all insights</a></div>
    </div>
</div>
<div class="m-t-1">
    <div class="publications-content">
        <div class="block-grid-md-3 m-b-1">
                        <!-- first box start -->
                        <div class="block-grid-item ">
                            <div>
                                <a class="box-link" href="https://www.wsp.com/en-us/insights/total-airport-management" title="Total Airport Management">
                                    <div class="thumbnail var-img" style="background-image: url('');">
                                    </div>
                                    <div class="caption">
                                        <div class="img-link-bold text_2lines">Total Airport Management</div>
                                    </div>
                                </a>
                            </div>
                        </div>
                        <!-- first box start -->
                        <div class="block-grid-item ">
                            <div>
                                <a class="box-link" href="https://www.wsp.com/en-us/insights/enduring-places-operational-resilience" title="Enduring Places: Operational Resilience">
                                    <div class="thumbnail var-img" style="background-image: url('/-/media/insights/us/enduring-places-operational-resilience/bnr-enduring-places-operational-resilience.jpg');">
                                            <img src="/-/media/images/thu-transparent.png" alt="thu-transparent" class="img-responsive" disablewebedit="True" />
                                    </div>
                                    <div class="caption">
                                        <div class="img-link-bold text_2lines">Enduring Places: Operational Resilience</div>
                                    </div>
                                </a>
                            </div>
                        </div>
                        <!-- first box start -->
                        <div class="block-grid-item ">
                            <div>
                                <a class="box-link" href="https://www.wsp.com/en-us/insights/energy-in-motion-unlocking-the-interconnected-grid-of-tomorrow" title="Energy In Motion: Unlocking the Interconnected Grid of Tomorrow">
                                    <div class="thumbnail var-img" style="background-image: url('/-/media/insights/us/energy-in-motion-2026/bnr-unlocking-the-interconnected-grid-of-tomorrow-v2.jpg');">
                                            <img src="/-/media/images/thu-transparent.png" alt="thu-transparent" class="img-responsive" disablewebedit="True" />
                                    </div>
                                    <div class="caption">
                                        <div class="img-link-bold text_2lines">Energy In Motion: Unlocking the Interconnected Grid of Tomorrow</div>
                                    </div>
                                </a>
                            </div>
                        </div>

            <!-- first box end -->
        </div>
    </div>
    <!-- Show button only on mobile - start -->
    <div class="hidden-md hidden-lg">
        <a href="https://www.wsp.com/en-us/insights-results-page" class="col-xs-12 btn btn-secondary m-t-0 m-b-m80" title="Read all insights">Read all insights</a>
        <div class="clear"></div>
    </div>
    <!-- Show button only on mobile - end -->
</div>
<!-- component ends here -->
<!-- Insight - end - Innovative thinking -->
<style>
    .m-r-0{margin-right:0;}
</style>


</div>
    </div>
  </div>
</div>
<div class="container-fluid full-width ft-component ft-structural ft-one-column">
  <div class="row no-margin">
    <div class="col-md-12 no-padding">
      

<!-- Wrapper -->
<div class="big-padding ft-component ft-structural ft-content-wrapper">


     


<!-- Whats new - start -->
<!-- component starts here -->
<div class="row teaser-summary whats-new m-b-120d-80m">
    <div class="col-xs-12 col-md-4 col-lg-4">
        <div class="row">
            <h2 class="title-h2-48">Latest news</h2>
            <a class="btn btn-secondary hidden-xs hidden-sm m-t-0 m-b-0" href="https://www.wsp.com/en-us/news" title="Go to the newsroom">Go to the newsroom</a>
        </div>
    </div>
    <div class="col-xs-12 col-md-8 col-lg-8">
        <div class="row">
            <ul>
                    <!-- row 1 start -->
                    <li class="item-row">
                        <ul class="content-box">
                            <li class="col-xs-12 col-sm-12">
                                <p class="date">01.08.26</p>
                            </li>                            
                            <li class="col-xs-12 col-sm-12">
 <div class="caption"><span class="date hidden-md hidden-lg">01.08.26</div>                            <a href="/en-us/news/2026/misener-joins-digital-mobility-innovation" class="icn-r-arw" title="Jim Misener Joins WSP to Lead Digital and Mobility Innovation for Advisory and Planning Business ">Jim Misener Joins WSP to Lead Digital and Mobility Innovation for Advisory and Planning Business </a></li>                                                       
                        </ul>
                    </li>
                    <!-- row 1 end -->
                    <!-- row 1 start -->
                    <li class="item-row">
                        <ul class="content-box">
                            <li class="col-xs-12 col-sm-12">
                                <p class="date">01.06.26</p>
                            </li>                            
                            <li class="col-xs-12 col-sm-12">
 <div class="caption"><span class="date hidden-md hidden-lg">01.06.26</div>                            <a href="/en-us/news/2026/wsp-completes-integration-with-power-engineers" class="icn-r-arw" title="Powerful Union: WSP Completes Integration with POWER Engineers">Powerful Union: WSP Completes Integration with POWER Engineers</a></li>                                                       
                        </ul>
                    </li>
                    <!-- row 1 end -->
            </ul>
            <div class="clear"></div>
            <a class="m-t-2 btn btn-secondary hidden-md hidden-lg" href="https://www.wsp.com/en-us/news" title="Go to the newsroom">Go to the newsroom</a>
        </div>
    </div>
</div>
<!-- component ends here -->
<!-- Whats new - end -->


</div>
    </div>
  </div>
</div>
</section>


<section class="section section-full m-b-0 bg-dark ft-component ft-structural ft-section">
    
    
    <div class="container-fluid empty-div"></div>
    
<div class="container-fluid full-width ft-component ft-structural ft-one-column">
  <div class="row no-margin">
    <div class="col-md-12 no-padding">
      

<!-- Wrapper -->
<div class=" ft-component ft-structural ft-content-wrapper">


     
<!-- Careers - Find opportunity - start -->
<!-- component starts here -->
<section class="section section-full career-opp-box multi-tab-container">
    <div class="container-fluid full-width">
        <div class="row">
            <div class="col-xs-12">
                <div class="container-fluid multi-tab-empty-div"></div>  <!-- Do not delete this empty div -->
                <div class="row flex">
                    <!-- left start -->
                    <div class="col-md-7 width-var bg-img-desktop">
                        <div>
                            <div class="hidden-xs hidden-sm content-right vis-hidden">
<img src="/-/media/datasources/rebrand-homepage/career/img-homepage-careers.png?h=588&amp;iar=0&amp;w=1177&amp;hash=5F59D3412825088E31CF3A8B4C5305A2" class="img-responsive" alt="img-homepage-careers" width="1177" height="588" />                            </div>
                            <div class="hidden-md hidden-lg">
<img src="/-/media/datasources/rebrand-homepage/career/img-homepage-careers.png?h=588&amp;iar=0&amp;w=1177&amp;hash=5F59D3412825088E31CF3A8B4C5305A2" class="img-responsive" alt="img-homepage-careers" width="1177" height="588" />                            </div>
                            
                        </div>
                    </div>
                    <!-- left end -->
                    <!-- right start -->
                    <div class="col-md-4">
                        <div class="w-300">
                            <div class="teaser-summary">
                                <div class="row">
                                <div class="col-xs-12">
                                    <h2 class="title-h2-48 m-b-2 limit-2">
Lead and grow                                    </h2>
                                    <p class="limit-3-imp m-b-2 f-25-20 para-text">What if you could build a career that’s as unique as you? With us you can.</p>
                                    <div class="m-b-3">
                                        <a href="/en-us/careers/job-opportunities?country=US" title="Search and apply" role="button" class="btn btn-primary m-t-1">Search and apply</a>
<a href="/en-us/careers/why-join-us" title="Life at WSP" role="button" class="btn btn-secondary m-t-1">Life at WSP</a>                                    </div>
                                </div>
                                <div class="clear"></div>
                                </div>
                            </div>
                        </div>
                    </div>
                    <!-- right end -->
                    <div class="clear"></div>
                </div>
            </div>
        </div>
    </div>
</section>
<!-- component ends here -->
<!--</section>-->

<style id="hero-image-src">
     .career-opp-box .bg-img-opp {
         background-image: url(/-/media/datasources/rebrand-homepage/career/img-homepage-careers.png);
     }
    .career-opp-box .content-right {
        display: flex;
        justify-content: flex-end;
    }
    .vis-hidden{visibility:hidden;}
    @media (min-width:992px) {
        .bg-img-desktop {
            background-image: url( /-/media/datasources/rebrand-homepage/career/img-homepage-careers.png );
            background-size: cover;
            background-repeat: no-repeat;
            background-position: calc(100% - 1vw) center;
        }
    }
</style>



<!-- Careers - Find opportunity - end -->


</div>
    </div>
  </div>
</div>
</section>


<section class="section section-full   ft-component ft-structural ft-section">
    
    
    <div class="container-fluid empty-div"></div>
    
<div class="container-fluid full-width ft-component ft-structural ft-one-column">
  <div class="row no-margin">
    <div class="col-md-12 no-padding">
      

<!-- Wrapper -->
<div class=" ft-component ft-structural ft-content-wrapper">


     <!-- Keep in touch - contact - start -->
<section class="section section-full contact-bg">
    <div class="container-fluid big-padding">
        <div class="row flex cont-office">
                <div class="col-xs-12 col-md-6"><h3 class="U--mb--0">Keep in touch</h3><p>Contact our team or find an office closest to you.</p></div>
                <div class="col-xs-12 col-md-6 var-btn-pos">
                    <div>
                        <a class="btn btn-primary m-t-m32 m-b-m0" href="/en-us/contact-us/send-a-message" role="button">Contact us</a>
                        <a class="btn btn-secondary m-t-m20" href="/en-us/contact-us/offices" role="button">Find an office</a>
                    </div>
                </div>
        </div>
    </div>
</section>
<!-- Keep in touch - contact - end -->
<script>
    window.onload = function () {
        function updateBtnPosition() {
            const $btnPos = $(".cont-office .var-btn-pos");
            if ($(window).width() > 991) {
                const $teaserSummary = $(".career-opp-box .teaser-summary");
                if ($teaserSummary.length) {
                    const position = $teaserSummary.offset();
                    if (position) $btnPos.css({ position: "absolute", left: position.left - 15 });
                } else {
                    $btnPos.addClass("flex-btn-right");
                }
            } else {
                $btnPos.removeAttr("style").removeClass("flex-btn-right");
            }
        }

        updateBtnPosition();
        $(window).resize(updateBtnPosition);
    };

</script>



</div>
    </div>
  </div>
</div>
</section>
        </main>
        <!-- BEGIN SEARCHNOINDEX -->
        <footer class="main-footer bg bg-dark-footer" aria-label="Footer navigation">
            <div class="footer-box">
                
<article>

    <style type="text/css">.wspSvgLogoFooter {fill: #ff372f;}</style>
    <ul class="mf__list nav nav-stacked col-md-2 hidden-mobile" aria-labelledby="wsp-logo-footer">
        <div class="wspFtLogo">
            <a href="/en-us/" title="WSP" aria-label="WSP homepage">
                <svg xmlns="http://www.w3.org/2000/svg" width="73" height="34.717" viewBox="0 0 73 34.717"><defs></defs><path class="wspSvgLogoFooter" d="M381.545,9.381A14.281,14.281,0,0,0,378.22,0h5.467a15.714,15.714,0,0,1,2.9,9.381V9.4a15.725,15.725,0,0,1-2.915,9.4H378.21a14.273,14.273,0,0,0,3.335-9.4Z" transform="translate(-313.592)" /><path class="wspSvgLogoFooter" d="M5.049,0H0L6.928,18.789H9.612l1.182-3.207Z" transform="translate(0 0)" /><path class="wspSvgLogoFooter" d="M84.319,0H79.27L86.2,18.789h2.684l1.182-3.207Z" transform="translate(-65.727 0)" /><path class="wspSvgLogoFooter" d="M311.08,34.725V.01h-4.83V34.725Z" transform="translate(-253.927 -0.008)" /><path class="wspSvgLogoFooter" d="M172.3,2.787A8.28,8.28,0,0,1,172.947,0h4.418a4.056,4.056,0,0,0-.321,3.091,4.629,4.629,0,0,0,2.064,2.448,29.4,29.4,0,0,0,3.653,1.693,14.782,14.782,0,0,1,3.561,2.129,7.064,7.064,0,0,1,2.629,4.974c.019.244.027.49.027.736a8.291,8.291,0,0,1-.776,3.716h-4.538a5.06,5.06,0,0,0,.735-2.749c-.159-2.366-3.05-3.661-5.467-4.738-.369-.171-.731-.325-1.078-.487a13.824,13.824,0,0,1-3.016-1.823,6.4,6.4,0,0,1-2.088-2.7,7.823,7.823,0,0,1-.473-3.162C172.279,3.012,172.286,2.9,172.3,2.787Z" transform="translate(-142.833)" /></svg>
            </a>
        </div>

            <li class="mf__item">
                <a class="mf__link icon-link" onclick="" href="https://www.instagram.com/wsp.usa/" target="_blank" title="Instagram" data-wspdatalayer="{'event':'interaction','eventCategory':'social media','eventAction':'Instagram','eventLabel':'https://www.instagram.com/wsp.usa/'}">
                        <i class="fa fa-instagram fa-size"></i>&nbsp;
                    

                        <span class='sr-only'>Page will open in a new tab</span>
                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link icon-link" onclick="" href="https://www.linkedin.com/company/wspusa/" target="_blank" title="LinkedIn" data-wspdatalayer="{'event':'interaction','eventCategory':'social media','eventAction':'LinkedIn','eventLabel':'https://www.linkedin.com/company/wspusa/'}">
                        <i class="fa fa-linkedin fa-size"></i>&nbsp;
                    

                        <span class='sr-only'>Page will open in a new tab</span>
                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link icon-link" onclick="" href="https://www.youtube.com/wspusa" target="_blank" title="YouTube" data-wspdatalayer="{'event':'interaction','eventCategory':'social media','eventAction':'YouTube','eventLabel':'https://www.youtube.com/wspusa'}">
                        <i class="fa fa-youtube fa-size"></i>&nbsp;
                    

                        <span class='sr-only'>Page will open in a new tab</span>
                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link icon-link" onclick="" href="https://twitter.com/wspusa" target="_blank" title="Twitter" data-wspdatalayer="{'event':'interaction','eventCategory':'social media','eventAction':'Twitter','eventLabel':'https://twitter.com/wspusa'}">
                        <i class="fa fa-x-twitter fa-size"></i>&nbsp;
                    

                        <span class='sr-only'>Page will open in a new tab</span>
                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link icon-link" onclick="" href="https://www.facebook.com/wspusa/" target="_blank" title="Facebook" data-wspdatalayer="{'event':'interaction','eventCategory':'social media','eventAction':'Facebook','eventLabel':'https://www.facebook.com/wspusa/'}">
                        <i class="fa fa-facebook fa-size"></i>&nbsp;
                    

                        <span class='sr-only'>Page will open in a new tab</span>
                </a>
            </li>
    </ul>
    <style type="text/css">.wspSvgLogoFooter {fill: #ff372f;}</style>
    <ul class="mf__list nav nav-stacked col-md-2 hidden-mobile" aria-labelledby="wsp-logo-footer">
        <div class="wspFtLogo">
            <a href="/en-us/" title="WSP" aria-label="WSP homepage">
                <svg xmlns="http://www.w3.org/2000/svg" width="73" height="34.717" viewBox="0 0 73 34.717"><defs></defs><path class="wspSvgLogoFooter" d="M381.545,9.381A14.281,14.281,0,0,0,378.22,0h5.467a15.714,15.714,0,0,1,2.9,9.381V9.4a15.725,15.725,0,0,1-2.915,9.4H378.21a14.273,14.273,0,0,0,3.335-9.4Z" transform="translate(-313.592)" /><path class="wspSvgLogoFooter" d="M5.049,0H0L6.928,18.789H9.612l1.182-3.207Z" transform="translate(0 0)" /><path class="wspSvgLogoFooter" d="M84.319,0H79.27L86.2,18.789h2.684l1.182-3.207Z" transform="translate(-65.727 0)" /><path class="wspSvgLogoFooter" d="M311.08,34.725V.01h-4.83V34.725Z" transform="translate(-253.927 -0.008)" /><path class="wspSvgLogoFooter" d="M172.3,2.787A8.28,8.28,0,0,1,172.947,0h4.418a4.056,4.056,0,0,0-.321,3.091,4.629,4.629,0,0,0,2.064,2.448,29.4,29.4,0,0,0,3.653,1.693,14.782,14.782,0,0,1,3.561,2.129,7.064,7.064,0,0,1,2.629,4.974c.019.244.027.49.027.736a8.291,8.291,0,0,1-.776,3.716h-4.538a5.06,5.06,0,0,0,.735-2.749c-.159-2.366-3.05-3.661-5.467-4.738-.369-.171-.731-.325-1.078-.487a13.824,13.824,0,0,1-3.016-1.823,6.4,6.4,0,0,1-2.088-2.7,7.823,7.823,0,0,1-.473-3.162C172.279,3.012,172.286,2.9,172.3,2.787Z" transform="translate(-142.833)" /></svg>
            </a>
        </div>

            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/who-we-are" target="" title="Who We Are" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Who We Are','eventLabel':'/en-us/who-we-are'}">
                                            <span>Who We Are</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/who-we-are/our-history" target="" title="Our history" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Our history','eventLabel':'/en-us/who-we-are/our-history'}">
                                            <span>Our history</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/hubs/future-ready" target="" title="Future Ready" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Future Ready','eventLabel':'/en-us/hubs/future-ready'}">
                                            <span>Future Ready</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/who-we-are/leadership-team" target="" title="U.S. leadership" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'U.S. leadership','eventLabel':'/en-us/who-we-are/leadership-team'}">
                                            <span>U.S. leadership</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/contact-us/offices/united-states" target="" title="Our offices" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Our offices','eventLabel':'/en-us/contact-us/offices/united-states'}">
                                            <span>Our offices</span>


                </a>
            </li>
    </ul>
    <style type="text/css">.wspSvgLogoFooter {fill: #ff372f;}</style>
    <ul class="mf__list nav nav-stacked col-md-2 hidden-mobile" aria-labelledby="wsp-logo-footer">
        <div class="wspFtLogo">
            <a href="/en-us/" title="WSP" aria-label="WSP homepage">
                <svg xmlns="http://www.w3.org/2000/svg" width="73" height="34.717" viewBox="0 0 73 34.717"><defs></defs><path class="wspSvgLogoFooter" d="M381.545,9.381A14.281,14.281,0,0,0,378.22,0h5.467a15.714,15.714,0,0,1,2.9,9.381V9.4a15.725,15.725,0,0,1-2.915,9.4H378.21a14.273,14.273,0,0,0,3.335-9.4Z" transform="translate(-313.592)" /><path class="wspSvgLogoFooter" d="M5.049,0H0L6.928,18.789H9.612l1.182-3.207Z" transform="translate(0 0)" /><path class="wspSvgLogoFooter" d="M84.319,0H79.27L86.2,18.789h2.684l1.182-3.207Z" transform="translate(-65.727 0)" /><path class="wspSvgLogoFooter" d="M311.08,34.725V.01h-4.83V34.725Z" transform="translate(-253.927 -0.008)" /><path class="wspSvgLogoFooter" d="M172.3,2.787A8.28,8.28,0,0,1,172.947,0h4.418a4.056,4.056,0,0,0-.321,3.091,4.629,4.629,0,0,0,2.064,2.448,29.4,29.4,0,0,0,3.653,1.693,14.782,14.782,0,0,1,3.561,2.129,7.064,7.064,0,0,1,2.629,4.974c.019.244.027.49.027.736a8.291,8.291,0,0,1-.776,3.716h-4.538a5.06,5.06,0,0,0,.735-2.749c-.159-2.366-3.05-3.661-5.467-4.738-.369-.171-.731-.325-1.078-.487a13.824,13.824,0,0,1-3.016-1.823,6.4,6.4,0,0,1-2.088-2.7,7.823,7.823,0,0,1-.473-3.162C172.279,3.012,172.286,2.9,172.3,2.787Z" transform="translate(-142.833)" /></svg>
            </a>
        </div>

            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/what-we-do" target="" title="What We Do" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'What We Do','eventLabel':'/en-us/what-we-do'}">
                                            <span>What We Do</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/sectors" target="" title="Sectors" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Sectors','eventLabel':'/en-us/sectors'}">
                                            <span>Sectors</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/services" target="" title="Services" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Services','eventLabel':'/en-us/services'}">
                                            <span>Services</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/projects" target="" title="Projects" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Projects','eventLabel':'/en-us/projects'}">
                                            <span>Projects</span>


                </a>
            </li>
    </ul>
    <style type="text/css">.wspSvgLogoFooter {fill: #ff372f;}</style>
    <ul class="mf__list nav nav-stacked col-md-2 hidden-mobile" aria-labelledby="wsp-logo-footer">
        <div class="wspFtLogo">
            <a href="/en-us/" title="WSP" aria-label="WSP homepage">
                <svg xmlns="http://www.w3.org/2000/svg" width="73" height="34.717" viewBox="0 0 73 34.717"><defs></defs><path class="wspSvgLogoFooter" d="M381.545,9.381A14.281,14.281,0,0,0,378.22,0h5.467a15.714,15.714,0,0,1,2.9,9.381V9.4a15.725,15.725,0,0,1-2.915,9.4H378.21a14.273,14.273,0,0,0,3.335-9.4Z" transform="translate(-313.592)" /><path class="wspSvgLogoFooter" d="M5.049,0H0L6.928,18.789H9.612l1.182-3.207Z" transform="translate(0 0)" /><path class="wspSvgLogoFooter" d="M84.319,0H79.27L86.2,18.789h2.684l1.182-3.207Z" transform="translate(-65.727 0)" /><path class="wspSvgLogoFooter" d="M311.08,34.725V.01h-4.83V34.725Z" transform="translate(-253.927 -0.008)" /><path class="wspSvgLogoFooter" d="M172.3,2.787A8.28,8.28,0,0,1,172.947,0h4.418a4.056,4.056,0,0,0-.321,3.091,4.629,4.629,0,0,0,2.064,2.448,29.4,29.4,0,0,0,3.653,1.693,14.782,14.782,0,0,1,3.561,2.129,7.064,7.064,0,0,1,2.629,4.974c.019.244.027.49.027.736a8.291,8.291,0,0,1-.776,3.716h-4.538a5.06,5.06,0,0,0,.735-2.749c-.159-2.366-3.05-3.661-5.467-4.738-.369-.171-.731-.325-1.078-.487a13.824,13.824,0,0,1-3.016-1.823,6.4,6.4,0,0,1-2.088-2.7,7.823,7.823,0,0,1-.473-3.162C172.279,3.012,172.286,2.9,172.3,2.787Z" transform="translate(-142.833)" /></svg>
            </a>
        </div>

            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/insights" target="" title="Insights" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Insights','eventLabel':'/en-us/insights'}">
                                            <span>Insights</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/insights/climate" target="" title="Climate" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Climate','eventLabel':'/en-us/insights/climate'}">
                                            <span>Climate</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/insights/mobility" target="" title="Mobility" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Mobility','eventLabel':'/en-us/insights/mobility'}">
                                            <span>Mobility</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/insights/places" target="" title="Places" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Places','eventLabel':'/en-us/insights/places'}">
                                            <span>Places</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/insights/society" target="" title="Society" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Society','eventLabel':'/en-us/insights/society'}">
                                            <span>Society</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/insights/resources" target="" title="Resources" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Resources','eventLabel':'/en-us/insights/resources'}">
                                            <span>Resources</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/insights/technology" target="" title="Technology" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Technology','eventLabel':'/en-us/insights/technology'}">
                                            <span>Technology</span>


                </a>
            </li>
    </ul>
    <style type="text/css">.wspSvgLogoFooter {fill: #ff372f;}</style>
    <ul class="mf__list nav nav-stacked col-md-2 hidden-mobile" aria-labelledby="wsp-logo-footer">
        <div class="wspFtLogo">
            <a href="/en-us/" title="WSP" aria-label="WSP homepage">
                <svg xmlns="http://www.w3.org/2000/svg" width="73" height="34.717" viewBox="0 0 73 34.717"><defs></defs><path class="wspSvgLogoFooter" d="M381.545,9.381A14.281,14.281,0,0,0,378.22,0h5.467a15.714,15.714,0,0,1,2.9,9.381V9.4a15.725,15.725,0,0,1-2.915,9.4H378.21a14.273,14.273,0,0,0,3.335-9.4Z" transform="translate(-313.592)" /><path class="wspSvgLogoFooter" d="M5.049,0H0L6.928,18.789H9.612l1.182-3.207Z" transform="translate(0 0)" /><path class="wspSvgLogoFooter" d="M84.319,0H79.27L86.2,18.789h2.684l1.182-3.207Z" transform="translate(-65.727 0)" /><path class="wspSvgLogoFooter" d="M311.08,34.725V.01h-4.83V34.725Z" transform="translate(-253.927 -0.008)" /><path class="wspSvgLogoFooter" d="M172.3,2.787A8.28,8.28,0,0,1,172.947,0h4.418a4.056,4.056,0,0,0-.321,3.091,4.629,4.629,0,0,0,2.064,2.448,29.4,29.4,0,0,0,3.653,1.693,14.782,14.782,0,0,1,3.561,2.129,7.064,7.064,0,0,1,2.629,4.974c.019.244.027.49.027.736a8.291,8.291,0,0,1-.776,3.716h-4.538a5.06,5.06,0,0,0,.735-2.749c-.159-2.366-3.05-3.661-5.467-4.738-.369-.171-.731-.325-1.078-.487a13.824,13.824,0,0,1-3.016-1.823,6.4,6.4,0,0,1-2.088-2.7,7.823,7.823,0,0,1-.473-3.162C172.279,3.012,172.286,2.9,172.3,2.787Z" transform="translate(-142.833)" /></svg>
            </a>
        </div>

            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/careers" target="" title="Careers" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Careers','eventLabel':'/en-us/careers'}">
                                            <span>Careers</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="dataLayer.push({
 &#39;event&#39;: &#39;user_interaction&#39;,
 &#39;event_name&#39;: &#39;click&#39;,
 &#39;interaction&#39;: {
  &#39;click_type&#39;: &#39;cta job list&#39;,
  &#39;link_url&#39;: &#39;https://www.wsp.comhttps://www.wsp.com/en-us/careers/job-opportunities?country=US&#39;,
  &#39;link_text&#39;: &#39;U.S. job opportunities&#39;
&#160;}
})" href="https://www.wsp.com/en-us/careers/job-opportunities?country=US" target="" title="U.S. job opportunities" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'U.S. job opportunities','eventLabel':'https://www.wsp.com/en-us/careers/job-opportunities?country=US'}">
                                            <span>U.S. job opportunities</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/careers/early-career" target="" title="Early career" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Early career','eventLabel':'/en-us/careers/early-career'}">
                                            <span>Early career</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/careers/experienced-professionals" target="" title="Experienced professionals" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Experienced professionals','eventLabel':'/en-us/careers/experienced-professionals'}">
                                            <span>Experienced professionals</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/careers/why-join-us" target="" title="Why join us?" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Why join us?','eventLabel':'/en-us/careers/why-join-us'}">
                                            <span>Why join us?</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="https://www.wspinspectionservices.com/" target="_blank" title="FEMA inspection services" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'FEMA inspection services','eventLabel':'https://www.wspinspectionservices.com/'}">
                                            <span>FEMA inspection services</span>


                        <span class='sr-only'>Page will open in a new tab</span>
                </a>
            </li>
    </ul>
    <style type="text/css">.wspSvgLogoFooter {fill: #ff372f;}</style>
    <ul class="mf__list nav nav-stacked col-md-2 hidden-mobile" aria-labelledby="wsp-logo-footer">
        <div class="wspFtLogo">
            <a href="/en-us/" title="WSP" aria-label="WSP homepage">
                <svg xmlns="http://www.w3.org/2000/svg" width="73" height="34.717" viewBox="0 0 73 34.717"><defs></defs><path class="wspSvgLogoFooter" d="M381.545,9.381A14.281,14.281,0,0,0,378.22,0h5.467a15.714,15.714,0,0,1,2.9,9.381V9.4a15.725,15.725,0,0,1-2.915,9.4H378.21a14.273,14.273,0,0,0,3.335-9.4Z" transform="translate(-313.592)" /><path class="wspSvgLogoFooter" d="M5.049,0H0L6.928,18.789H9.612l1.182-3.207Z" transform="translate(0 0)" /><path class="wspSvgLogoFooter" d="M84.319,0H79.27L86.2,18.789h2.684l1.182-3.207Z" transform="translate(-65.727 0)" /><path class="wspSvgLogoFooter" d="M311.08,34.725V.01h-4.83V34.725Z" transform="translate(-253.927 -0.008)" /><path class="wspSvgLogoFooter" d="M172.3,2.787A8.28,8.28,0,0,1,172.947,0h4.418a4.056,4.056,0,0,0-.321,3.091,4.629,4.629,0,0,0,2.064,2.448,29.4,29.4,0,0,0,3.653,1.693,14.782,14.782,0,0,1,3.561,2.129,7.064,7.064,0,0,1,2.629,4.974c.019.244.027.49.027.736a8.291,8.291,0,0,1-.776,3.716h-4.538a5.06,5.06,0,0,0,.735-2.749c-.159-2.366-3.05-3.661-5.467-4.738-.369-.171-.731-.325-1.078-.487a13.824,13.824,0,0,1-3.016-1.823,6.4,6.4,0,0,1-2.088-2.7,7.823,7.823,0,0,1-.473-3.162C172.279,3.012,172.286,2.9,172.3,2.787Z" transform="translate(-142.833)" /></svg>
            </a>
        </div>

            <li class="mf__item">
                <a class="mf__link " onclick="" href="" target="" title="Corporate" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Corporate'}">
                                            <span>Corporate</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/who-we-are/corporate-responsibility/sustainability" target="" title="Sustainability" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Sustainability','eventLabel':'/en-us/who-we-are/corporate-responsibility/sustainability'}">
                                            <span>Sustainability</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/who-we-are/corporate-responsibility/health-safety" target="" title="Health and safety" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Health and safety','eventLabel':'/en-us/who-we-are/corporate-responsibility/health-safety'}">
                                            <span>Health and safety</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="" target="" title="Investors" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Investors'}">
                                            <span>Investors</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="https://www.wsp.com/en-us/who-we-are/corporate-responsibility/ethics-integrity#business-conduct-hotline" target="" title="Business Conduct Hotline" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Business Conduct Hotline','eventLabel':'https://www.wsp.com/en-us/who-we-are/corporate-responsibility/ethics-integrity#business-conduct-hotline'}">
                                            <span>Business Conduct Hotline</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/news" target="" title="News" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'News','eventLabel':'/en-us/news'}">
                                            <span>News</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/investors/corporate-governance" target="" title="Corporate governance" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Corporate governance','eventLabel':'/en-us/investors/corporate-governance'}">
                                            <span>Corporate governance</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="/en-us/who-we-are/corporate-responsibility/ethics-integrity" target="" title="Ethics and integrity" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Ethics and integrity','eventLabel':'/en-us/who-we-are/corporate-responsibility/ethics-integrity'}">
                                            <span>Ethics and integrity</span>


                </a>
            </li>
            <li class="mf__item">
                <a class="mf__link " onclick="" href="https://ussuppliers.wspis.com/" target="_blank" title="Supplier registration" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Supplier registration','eventLabel':'https://ussuppliers.wspis.com/'}">
                                            <span>Supplier registration</span>


                        <span class='sr-only'>Page will open in a new tab</span>
                </a>
            </li>
    </ul>

<ul class="mf__list nav nav-stacked col-md-2 hidden-mobile"></ul> 
<!-- 6314 - Mobile footer - update -->
<script type="text/javascript">
    $(document).ready(function () {
    $("footer.main-footer article ul:first").removeClass("hidden-mobile");  // Only display 1st column on Mobile layout and hide other columns in footer
    $("footer.main-footer article ul:not(:first) div").remove(".wspFtLogo");    //Removes WSP logo from each UL element loop on page load.
    })
</script>
</article>


<div class="clearfix"> </div>

<div class="container-fluid">
    <div class="main-footer-bottom">
        <span class="mfb__copyright hidden-sm visible-md visible-lg">
<small class="copyright">
  &copy;2026 WSP
</small></span>

        


<nav>
    <ul class="mfb__list nav">
            <li class=" mfb__item">


                <a href="/en-us/legal/the-wsp-logo" target="" title="The WSP logo" class="mfb__link " role="" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'The WSP logo','eventLabel':'/en-us/legal/the-wsp-logo'}">
The WSP logo                </a>
            </li>
            <li class=" mfb__item">


                <a href="/en-us/legal/privacy-notice" target="" title="Privacy notice" class="mfb__link " role="" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Privacy notice','eventLabel':'/en-us/legal/privacy-notice'}">
Privacy notice                </a>
            </li>
            <li class=" mfb__item">


                <a href="/en-us/legal/anti-spam-commitment" target="" title="Anti-spam commitment" class="mfb__link " role="" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Anti-spam commitment','eventLabel':'/en-us/legal/anti-spam-commitment'}">
Anti-spam commitment                </a>
            </li>
            <li class=" mfb__item">


                <a href="/en-us/legal/cookie-notice" target="" title="Cookie notice" class="mfb__link " role="" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Cookie notice','eventLabel':'/en-us/legal/cookie-notice'}">
Cookie notice                </a>
            </li>
            <li class=" mfb__item">


                <a href="/en-us/legal/terms-of-use" target="" title="Terms of use" class="mfb__link " role="" data-wspdatalayer="{'event':'interaction','eventCategory':'click on a CTA','eventAction':'Terms of use','eventLabel':'/en-us/legal/terms-of-use'}">
Terms of use                </a>
            </li>
    </ul>
</nav>


        <div class="mfb__copyright-div">
            <span class="mfb__copyright hidden-md hidden-lg">
<small class="copyright">
  &copy;2026 WSP
</small></span>
        </div>
    </div>
</div>
        <div tabindex="-1" class="modal fade" id="louisbergerModal" role="dialog" data-backdrop="static" data-keyboard="false">
            <div class="modal-dialog" role="document">
                <div class="modal-content">
                    <div class="modal-body">
                        <div class="row">
                            <!-- Custom markup for modal popup starts here -->
                            <div class="col-xs-12">
                                <div align="left" class="footer-h2">Exiting our Website</div>
                                <p style="font-size:17px;">You are about to leave WSP.com and are being redirected to a job opportunity at Louis Berger, which has been recently acquired by WSP in the US.</p>
                                <p style="text-align:center;">


                                    <button type="button" title="Continue" class="btn btn-secondary agreebtn" style="margin-right:5px;">Continue</button>
                                    <button type="button" title="dismissButtonValue" class="btn btn-grey" data-dismiss="modal">Go back</button>
                                </p>
                                <input type="hidden" name="Url" id="Url" value="" />
                            </div>
                            <!-- Custom markup for modal popup finishes here -->
                        </div>
                    </div>
                </div>
            </div><!-- /.modal-dialog -->
        </div>
        <script type="text/javascript">
       
            function louisBerger(x) {
                $("#louisbergerModal").modal('show');
                $("#Url").val(x);
            }
          $(".agreebtn").on('click',
           function (event) {
               $("#louisbergerModal").modal('hide');
               window.open($('#Url').val(), '_blank');
          });
           
        </script>


    <!-- /.modal-content -->
    <div tabindex="-1" class="modal fade" id="disclaimer01" role="dialog" style="display: none;" data-backdrop="static" data-keyboard="false">
        <div class="modal-dialog" role="document">
            <div class="modal-content">
                <div class="modal-header">
                    
                    <div class="modal-title footer-h4"></div>
                </div>
                <div class="modal-body disclaimerModal" style="padding:20px;overflow:auto; max-height: 300px ">
                    
                    <input type="hidden" name="Url" id="Url" value="" />
                </div>
                <div class="modal-footer" style="text-align:left;">



                    <button title="" class="btn btn-secondary agree" style="display:inline-block;margin:0;" type="button"></button>
                    <button title="" class="btn btn-warning" style="display:inline-block;margin:0;background-color:#999;" type="button" data-dismiss="modal"></button>

                </div>
            </div><!-- /.modal-content -->
        </div><!-- /.modal-dialog -->
    </div>
    <script type="text/javascript">
        $(".agree").on('click',
            function (event) {
                //alert($('#redirectUrl').val());
                setCookie("disclaimer", "1", 1);
                var url = $('#redirectUrl').val();
                var pattern = /^((http|https|ftp):\/\/)/;
                if (!pattern.test(url)) {
                   window.location.replace(url);
                } else {
                    window.open(url, '_blank');
                    $('#disclaimer01').modal('hide');
                }
               
            });
        
        function setCookie(cname, cvalue, exdays) {
            var d = new Date();
            d.setTime(d.getTime() + (60 * 1000));
            var expires = "expires=" + d.toUTCString();
            document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
        }
        
    </script>

<script>
    $(document).ready(function () {
        $('a[href*=".pdf"]').attr('target', '_blank');
    });

    if (navigator.userAgent.toLowerCase().indexOf('firefox') > -1) {
        // Do Firefox-related activities
        if (window.location.href.indexOf("#") > -1) {
            //console.log('# in address bar');
        }
        else {

            window.scrollTo(0, 0);
            //console.log('firefox browser scrolling to top');
        }
    }
</script>

            </div>
        </footer>
        
    </div>
    <script src="/scripts/Sitecore.Foundation.Theming.min.js"></script>
<script src="/scripts/Nexio.Foundation.Theming.WSP.min.js"></script>

    <!-- END SEARCHNOINDEX -->
    <!-- Javscript for Form extensions-->
    <script src="/sitecore%20modules/Web/ExperienceForms/scripts/jquery.validate.min.js"></script>
    <script src="/sitecore%20modules/Web/ExperienceForms/scripts/jquery.validate.unobtrusive.min.js"></script>
    <script src="/sitecore%20modules/Web/ExperienceForms/scripts/jquery.unobtrusive-ajax.min.js"></script>
    <script src="/sitecore%20modules/Web/ExperienceForms/scripts/form.validate.js"></script>
    <script src="/sitecore%20modules/Web/ExperienceForms/scripts/form.tracking.js"></script>
    <script src="/sitecore%20modules/Web/ExperienceForms/scripts/form.conditions.js"></script>
    <script src="/sitecore%20modules/Web/ExperienceForms/scripts/formsextensions.validate.js"></script>
    <script src="/sitecore%20modules/Web/ExperienceForms/scripts/form.GA-datalayers.js"></script>
    <!-------------------------------------------------------->
<script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'9c5560316c86c5f9',t:'MTc2OTY1NDU0MS4wMDAwMDA='};var a=document.createElement('script');a.nonce='';a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
</html>