`); $(`#${"filter-cards-test"}-category${i+1}-${j}`).on("change", {catIndex1: i, catIndex2: j}, function(e) { if(this.checked) { $(`#${"filter-cards-test"}-clear${e.data.catIndex1+1}-${e.data.catIndex2}`).css("display", ""); filterCardsObj["filter-cards-test"].addCategory(e.data.catIndex1, filterCardsObj["filter-cards-test"].filterCategories[e.data.catIndex1][e.data.catIndex2].trim()); } else { $(`#${"filter-cards-test"}-clear${e.data.catIndex1+1}-${e.data.catIndex2}`).css("display", "none"); filterCardsObj["filter-cards-test"].removeCategory(e.data.catIndex1, filterCardsObj["filter-cards-test"].filterCategories[e.data.catIndex1][e.data.catIndex2].trim()); } }); // add clear button $(".filter-cards-test-selected-filters").append(` `); $(`#${"filter-cards-test"}-clear${i+1}-${j}`).on("click", {catIndex1: i, catIndex2: j}, function(e) { $(this).css("display", "none"); $(`#${"filter-cards-test"}-category${e.data.catIndex1+1}-${e.data.catIndex2}`).prop("checked", false); $(".filter-cards-test-nav-category").removeClass("open"); filterCardsObj["filter-cards-test"].removeCategory(e.data.catIndex1, filterCardsObj["filter-cards-test"].filterCategories[e.data.catIndex1][e.data.catIndex2].trim()); }) } } // filter feature filterCardsObj["filter-cards-test"].rowsDefault = "${rows}".substring(0,2) != "${" ? parseInt("${rows}") : 2; filterCardsObj["filter-cards-test"].rows = filterCardsObj["filter-cards-test"].rowsDefault; filterCardsObj["filter-cards-test"].rowItems = 4; filterCardsObj["filter-cards-test"].showmore = "${show-more}".substring(0,2) != "${" ? parseInt("${show-more}") : 2; filterCardsObj["filter-cards-test"].filterData = []; filterCardsObj["filter-cards-test"].updateFilter = function() { // reset filter data filterCardsObj["filter-cards-test"].filterData = filterCardsObj["filter-cards-test"].filterDataBase; // hide all cards by default, then calculate which ones to reveal $(".filter-cards-test-filter-card").css("display", "none"); // only run category filter if there are categories set if(!filterCardsObj["filter-cards-test"].hideFilter) { // check if there are any active filters if(filterCardsObj["filter-cards-test"].activeFilters.reduce((acc, curr) => acc += curr.length, 0) > 0) { // active filters filterCardsObj["filter-cards-test"].filterData = filterCardsObj["filter-cards-test"].filterData.filter((card) => { var showCard = [false, false, false, false, false]; for(var i = 0; i < filterCardsObj["filter-cards-test"].activeFilters.length; i++) { if(filterCardsObj["filter-cards-test"].activeFilters[i].length == 0) { // if there are no active filters in a category, then don't use this category showCard[i] = true; } else { var cardCategoryList = card["category"+ (i+1)].split("|"); for(var j = 0; j < cardCategoryList.length; j++) { if(cardCategoryList[j].trim().length > 0 && filterCardsObj["filter-cards-test"].activeFilters[i].includes(cardCategoryList[j].trim())) { showCard[i] = true; } } } } return showCard.reduce((result, currentVal) => result && currentVal, true); }); $(".filter-cards-test-selected-filters").css("display", ""); } else { // no active filters $(".filter-cards-test-selected-filters").css("display", "none"); } } // rows to show if(filterCardsObj["filter-cards-test"].rows*filterCardsObj["filter-cards-test"].rowItems >= filterCardsObj["filter-cards-test"].filterData.length) { // show all filtered items, no "show more" button for(var i = 0; i < filterCardsObj["filter-cards-test"].filterData.length; i++) { $("#" + filterCardsObj["filter-cards-test"].filterData[i].id).css("display", ""); } $(".filter-cards-test-show-more").css("display", "none"); } else { // show # of filtered items depending on rows settings for(var i = 0; i < filterCardsObj["filter-cards-test"].rows * filterCardsObj["filter-cards-test"].rowItems; i++) { $("#" + filterCardsObj["filter-cards-test"].filterData[i].id).css("display", ""); } $(".filter-cards-test-show-more").css("display", ""); } // show less button if(filterCardsObj["filter-cards-test"].rows == filterCardsObj["filter-cards-test"].rowsDefault) { $(".filter-cards-test-show-less").css("display", "none"); } else { $(".filter-cards-test-show-less").css("display", ""); } // if either button is shown, display the show more/less button row if($(".filter-cards-test-show-more").css("display") != "none" || $(".filter-cards-test-show-less").css("display") != "none") { $(".filter-cards-test-show-more-row").css("display", ""); } else { $(".filter-cards-test-show-more-row").css("display", "none"); } } filterCardsObj["filter-cards-test"].updateFilter(); filterCardsObj["filter-cards-test"].addCategory = function(categoryIndex, category) { filterCardsObj["filter-cards-test"].activeFilters[categoryIndex].push(category); filterCardsObj["filter-cards-test"].rows = filterCardsObj["filter-cards-test"].rowsDefault; filterCardsObj["filter-cards-test"].updateFilter(); filtercardAnalytics("filter-cards-test", "add-category-"+category); } filterCardsObj["filter-cards-test"].removeCategory = function(categoryIndex, category) { filterCardsObj["filter-cards-test"].activeFilters[categoryIndex] = filterCardsObj["filter-cards-test"].activeFilters[categoryIndex].filter((e) => {return e != category}); filterCardsObj["filter-cards-test"].rows = filterCardsObj["filter-cards-test"].rowsDefault; filterCardsObj["filter-cards-test"].updateFilter(); filtercardAnalytics("filter-cards-test", "remove-category-"+category); } // open/close category column $(".filter-cards-test-nav-category").on("click", function(e) { if(e.target !== e.currentTarget) { return; } if($(this).hasClass("open")) { $(".filter-cards-test-nav-category").removeClass("open"); filtercardAnalytics("filter-cards-test", "close-filter"); } else { $(".filter-cards-test-nav-category").removeClass("open"); $(this).addClass("open"); filtercardAnalytics("filter-cards-test", "open-filter"); } }); // "clear filter(s)" button $(".filter-cards-test-clear-all").on("click", function(e) { filterCardsObj["filter-cards-test"].activeFilters = [[],[],[],[],[]]; $(".filter-cards-test-category-checkbox").prop("checked", false); $(".filter-cards-test-nav-category").removeClass("open"); $(".filter-cards-test-clear-button").css("display", "none"); filterCardsObj["filter-cards-test"].updateFilter(); filtercardAnalytics("filter-cards-test", "clear-filter"); }); // show more & show less buttons $(".filter-cards-test-show-more").on("click", function() { filterCardsObj["filter-cards-test"].rows += filterCardsObj["filter-cards-test"].showmore; $(".filter-cards-test-nav-category").removeClass("open"); filterCardsObj["filter-cards-test"].updateFilter(); filtercardAnalytics("filter-cards-test", "show-more"); }); $(".filter-cards-test-show-less").on("click", function() { filterCardsObj["filter-cards-test"].rows = filterCardsObj["filter-cards-test"].rowsDefault; $(".filter-cards-test-nav-category").removeClass("open"); filterCardsObj["filter-cards-test"].updateFilter(); document.querySelector(".filter-cards-test-container").scrollIntoView({behavior: "smooth"}); filtercardAnalytics("filter-cards-test", "show-less"); }); // also fire click event when enter is pressed, for accessibility purposes $('.filter-cards-test-show-more').keypress(function (e) { if(e.which == 13) { $('.filter-cards-test-show-more').click(); return false; } }); $('.filter-cards-test-show-less').keypress(function (e) { if(e.which == 13) { $('.filter-cards-test-show-less').click(); return false; } }); // analytics var PubID = dataLayer.custom.customConversion1.split(":").pop(); if (PubID != "" && PubID != null) { PubID += ":"; } else { PubID = "null:"; } var filtercardFirstClick = true; function filtercardAnalytics(section, target) { if (typeof s != "undefined") { target = target.replaceAll(' ', '-'); target = target.replaceAll(/[\’\:\&\,\.\'\"\\\|\/\(\)]/g, ''); section = section.replaceAll(' ', '-'); section = section.replaceAll(/[\’\:\&\,\.\'\"\\\|\/\(\)]/g, ''); var ActionType = "click"; s.linkTrackVars = 'prop1,prop2,prop3,eVar72'; s.eVar72 = PubID + section + ':'+ActionType+':'+target; s.eVar72 = s.eVar72.toLowerCase(); s.prop1 = sc_country; s.prop2 = sc_language; s.prop3 = sc_country + ';' + sc_language; if(filtercardFirstClick){ s.linkTrackEvents = "event23,event71,event72"; s.events = "event23,event71,event72"; s.tl(this, "o", s.eVar72); filtercardFirstClick = false; } else { s.linkTrackEvents = "event23,event71"; s.events = "event23,event71"; s.tl(this, "o", s.eVar72); } } }

Need some help figuring out where you fit?

Explore Your Fit is an interactive tool designed to help you evaluate and explore business areas and opportunities within Deloitte that may be a good fit based on your background and interests.

Explore your fit now
Explore dots image
A woman applying for a job

Our recruitment process, from start to success

Hear from various Deloitte professionals as they share their advice on each step of the recruitment journey, from applying, to interviewing and onboarding, and more.

${this.title}

${this.description}

${this.cta}
`; } } customElements.define("single-tile", singleTileItem); var newTileData = [ { title: "10 reasons to join Deloitte", description: "We understand the complex challenges you may face on your professional and personal journey—and respond by providing options designed to support you, empowering you to thrive mentally, physically, and financially, and caring for your well-being.", img: "/content/dam/html/us/2024/talent/shine/ten-reasons-to-join-deloitte.jpg", cta: "Read more", url: "https://www2.deloitte.com/us/en/pages/careers/articles/about-deloitte-careers-top-ten-reasons-to-join-deloitte.html", identifier: "one", },{ title: "Technology careers", description: "As leaders in applied technology, we welcome big thinkers and even bigger ideas. We value people who bring their passions and vision to the table. We foster a culture where people can lead, learn, and grow as they engineer the technology solutions of tomorrow.", img: "/content/dam/html/us/2024/talent/shine/tech-talent.jpg", cta: "Find out more", url: "https://www2.deloitte.com/us/en/pages/careers/articles/join-deloitte-tech-talent.html", identifier: "two", },{ title: "Life at Deloitte", description: "Our culture is built on inclusion, collaboration, ambition, and opportunity—see how it comes together for our people.", img: "/content/dam/html/us/2024/talent/shine/life-at-deloitte.jpg", cta: "Explore life at Deloitte", url: "https://www2.deloitte.com/us/en/careers/life-at-deloitte/culture.html", identifier: "three", },{ title: "Careers blog", description: "Meet some of our people and hear their insights on career development and more.", img: "/content/dam/html/us/2024/talent/shine/blog.jpg", cta: "Read our stories", url: "https://www2.deloitte.com/us/en/pages/careers/topics/life-at-deloitte-careers-blog.html", identifier: "four", },{ title: "Careers videos on YouTube", description: "Hear our professionals share what it's like to work, grow, and make an impact at Deloitte. ", img: "/content/dam/html/us/2024/talent/shine/youtube.jpg", cta: "Check us out", url: "https://www.youtube.com/playlist?list=PL-4NI73tleVi4OU1aLeg6ErQoATf9PWB1", identifier: "five", }, { title: "Deloitte + HBCUs", description: "Are you currently attending an HBCU and interested in a career at Deloitte? Whether you’re looking for an internship or a full-time position, we’d like to hear from you.", img: "/content/dam/html/us/2024/talent/shine/hbcu.jpg", cta: "Discover more", url: "https://www2.deloitte.com/us/en/pages/careers/articles/deloitte-and-hbcus.html", identifier: "six", } ] ; // var newTileData = [ // { // title: "Tax", // description: // "When you’re confronting the growing complexity in global tax regulation, we have designed scalable capabilities that can help you address talent shortages, lower costs, and leverage process automation. We work with you to devise a wide range of fully customized service models to fit your needs.", // img: "/content/dam/html/us/2024/investment-management-operate/Mosaic-Tile-3.png", // more: ` // • &nbsp Global tax compliance and reporting
// • &nbsp Global information reporting (GIR)
// • &nbsp Investor reporting services
// • &nbsp Tax department operations
// `, // }, // { // title: "Legal business services", // description: // "By aligning people, processes, and technology, we can assist legal departments through their transformation by bridging the gap between strategy and execution, improving efficiencies and reducing risk. Our work with industry-leading brands is designed to produce deeper insights that promote better, faster decisions to guide legal transformation.", // img: "/content/dam/html/us/2024/investment-management-operate/Mosaic-Tile-2.png", // more: ` // • &nbsp Legal operations process
// • &nbsp Staffing optimization
// • &nbsp Data management
// • &nbsp Discovery
// • &nbsp Legal department operating model
// • &nbsp Contract risk and matter management
// • &nbsp Legal function transformation labs
// • &nbsp Legal technology for contracts
// • &nbsp Digital forensics technology
// • &nbsp Document review & date management
// • &nbsp Commercial term management
// • &nbsp Operations & spend management
// • &nbsp Legal regulatory mapping
// • &nbsp Legal entity management
// `, // }, // { // title: "Technology", // description: // "System solutions | Data and analyticsYour potential to seize markets and lead growth is tied to the value that you can unlock from your applications. We help you look beyond core application management service (AMS) requirements and realize the potential for continuous improvement and improved total cost of ownership", // img: "/content/dam/html/us/2024/investment-management-operate/Mosaic-Tile-1.png", // more: ` // • &nbsp Application management services (AMS)
// • &nbsp Application development
// • &nbsp Deloitte on Demand
// • &nbsp Cloud managed services
// • &nbsp Deloitte cyber security analytics (CSA)
// `, // }, // { // title: "Risk", // description: // "Resiliency | Financial risk | Technology risk Should you manage risks or try to predict them? Our team of crisis and resilience professionals, as well as our advanced risk analysis capabilities, can help you restore your preemptive posture to get ahead of threats that put your operations, cybersecurity, regulations, and supply chain in danger.", // img: "/content/dam/html/us/2024/investment-management-operate/Mosaic-Tile-4.png", // more: ` // • &nbsp Detect and respond
// • &nbsp SOXWise
// • &nbsp Identity and access management
// • &nbsp Third-party risk management (TPRM)
// • &nbsp Deloitte application security system
// • &nbsp Managed Extended Detection and Response (MXDR)
// `, // }, // { // title: "Fund accounting and administration", // description: // "It’s critical that operations and strategic decisions improve your business. Our analytical data models and reporting teams can help you monitor and manage performance across key departments, drive efficiencies, maintain regulatory compliance, and ultimately make more informed decisions.", // img: "/content/dam/html/us/2024/investment-management-operate/Mosaic-Tile-5.png", // more: ` // • &nbsp Portfolio valuation support
// • &nbsp Regulatory reporting
// • &nbsp Return, fee, and expense calculations
// • &nbsp Financial statement reporting
// • &nbsp Investor reporting services
// • &nbsp Special purpose vehicle (SPV) accounting // and reporting
// `, // }, // { // title: "Compliance", // description: // "Our compliance-as-a-service model is designed to free up valuable internal resources to focus on revenue-generating activities and strategic initiatives. Our suite of compliance solutions includes regulatory reporting, monitoring and surveillance, compliance testing, personal trading oversight, and legal entity reporting.", // img: "/content/dam/html/us/2024/investment-management-operate/Mosaic-Tile-6.png", // more: ` // • &nbsp Investment Compliance Monitoring (ICM)
// • &nbsp Regulatory remediation
// • &nbsp Inspection managed services
// • &nbsp Testing
// • &nbsp Surveillance
// • &nbsp Marketing materials review
// • &nbsp Financial and non-financial reporting
// `, // }, // ]; var tileItemContainer = $(".tiles-tile"); for (i = 0; i < newTileData.length; i++) { tileItemContainer.append(` `); } var PubID = dataLayer.custom.customConversion1.split(":").pop(), firstClick = true;; if (PubID != "" && PubID != null) { PubID += ":"; } else { PubID = "null:"; } const openTileAnalytics = (tileTitle) => { s.linkTrackVars = "prop1,prop2,prop3,prop4,prop5,eVar72"; s.eVar72 = PubID+`tiles:tile-modal-opened:`+tileTitle; s.eVar72 = s.eVar72.toLowerCase(); s.prop1 = sc_country; s.prop2 = sc_language; s.prop3 = sc_country + ";" + sc_language; if(firstClick == true) { s.linkTrackEvents = "event23,event71,event72"; s.events = "event23,event71,event72"; firstClick = false; } else { s.linkTrackEvents = "event23,event71"; s.events = "event23,event71"; } s.tl(this, "o", s.eVar72); }
A woman applying for a job

Find your place at Deloitte

Discover how far your potential can go. Discover your impact.

Follow Life at Deloitte

Insert Custom HTML fragment. Do not delete! This box/component contains code that is needed on this page. This message will not be visible when page is activated.
+++ DO NOT USE THIS FRAGMENT WITHOUT EXPLICIT APPROVAL FROM THE CREATIVE STUDIO DEVELOPMENT TEAM +++