:root {
  --exl-primary: #fb4e0b;
  --exl-slate: #2e3643;
  --exl-ink: #000000;
  --exl-white: #ffffff;
  --exl-neutral: #f5f5f6;
  --exl-soft: #d5d7d9;
  --exl-black: #000000;
  --exl-tab: #787878;
  --exl-light-blue: #EDF9FD;
  --exl-shade-1: #434A56;
}
 
* {
  box-sizing: border-box;
}
 
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Yantramanav", sans-serif;
  color: var(--exl-ink);
  background: var(--exl-white);
  height: auto;
}

li {
    list-style-type: none !important;
}

 
img {
  display: block;
  max-width: 100%;
}
 
a, a:hover {
  text-decoration: none;
}

.region-content {
  padding: 0 !important;
}
 
/* Exl button */
.exl-btn {
    padding: 10px 16px;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    border-radius: 0;
    border: 1px solid var(--exl-primary);
    cursor: pointer;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
 
.btn-arrow {
  margin-left: 12px;
}
 
.exl-btn.btn-primary .btn-arrow svg path {
  fill: var(--exl-white);
}
 
.exl-btn.btn-primary:hover .btn-arrow svg path {
  fill: var(--exl-primary);
}
 
.exl-btn.btn-outline-primary .btn-arrow svg path {
  fill: var(--exl-black);
}
 
.exl-btn.btn-outline-primary:hover .btn-arrow svg path {
  fill: var(--exl-white);
}
 
.exl-btn.btn-primary {
    background-color: var(--exl-primary);
    color: var(--exl-white);
}
 
.exl-btn.btn-primary:hover {
    background-color: var(--exl-white);
    color: var(--exl-primary);
    border: 1px solid var(--exl-primary);
}
 
.exl-btn.btn-outline-primary {
    background-color: transparent;
    color: var(--exl-black);
    border-width: 2px;
}
 
.exl-btn.btn-outline-primary:hover {
    background-color: var(--exl-primary);
    color: var(--exl-white);
    border-color: var(--exl-primary);
}
 
.exl-btn.btn-sm {
    font-size: 16px;
    line-height: 20px;
    height: 36px;
}
/* End Exl button */
 
/* Header */
.exl-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
}
 
.exl-shell {
    max-width: 1340px;
    padding: 0 30px;
    margin: 0 auto;
}
 
.exl-navbar {
    background: var(--exl-white);
    min-height: 85px;
    box-shadow: none;
    padding: 0;
}
 
.exl-navbar .navbar-brand {
    margin-right: 48px;
}
 
.exl-navbar .navbar-brand img {
    width: 72px;
    height: auto;
}
 
.exl-nav-left,
.exl-nav-right {
    gap: 8px;
    align-items: center;
}
 
.exl-nav-left .nav-link,
.exl-nav-right .nav-link {
    color: #000;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    padding: 0.45rem 0.85rem;
}
 
.exl-nav-left .nav-link.active,
.exl-nav-left .nav-link:hover,
.exl-nav-right .nav-link:hover {
    color: #fb4e0b;
}
 
.separator {
    width: 20px;
    display: flex;
    justify-content: center;
}
 
.separator span {
    display: block;
    width: 1px;
    height: 20px;
    background: #d5d7d9;
}
 
.exl-region {
    border: 0;
    border-radius: 0;
    border-left: 1px solid #d5d7d9;
    border-right: 1px solid #d5d7d9;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    padding: 0.3rem 0.7rem;
}
 
.exl-region:hover,
.exl-region:focus,
.exl-region:active {
    border-left: 1px solid #d5d7d9;
    border-right: 1px solid #d5d7d9;
    color: #000;
}
 
.exl-touch-btn {
    border: 2px solid #fb4e0b;
    border-radius: 0;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    padding: 7px 14px;
    text-decoration: none;
}
 
.exl-touch-btn:hover {
    background: #fb4e0b;
    color: var(--exl-white);
}
/* End Header */
 
/* Exl ticker */
.exl-ticker {
  background: #D5D7D9;
}
 
.exl-ticker .exl-shell {
  padding: 12px 68px;
  display: flex;
  justify-content: center;
  align-items: center;
}
 
.exl-ticker p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #364153;
  margin: 0;
  padding-right: 12px;
}
.exl-ticker a {
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
}
 
.exl-inline-link {
  display: inline-flex;
  align-items: center;
}
 
.exl-inline-link span {
    padding-left: 4px;
}
/* End Exl ticker */
 
.exl-hero {
  position: relative;
  min-height: 700px;
  padding: 60px 0;
  overflow: hidden;
  background-size: cover;
}
 
.exl-hero-copy {
  position: relative;
  max-width: 518px;
padding-left: 56px;
}
 
.exl-hero-copy .exl-btn {
  margin-top: 44px;
}

.exl-hero .exl-shell {
    padding: 0px 50px;
}

.exl-accent-bar {
  position: absolute;
  left: 0;
  top: 0;
}
 
.exl-hero-copy h1 {
  margin: 0;
  color: var(--exl-white);
  font-size: 40px;
  line-height: 40px;
  font-weight: 300;
}
 
.hero-media-slider {
  position: relative;
}
 
.exl-media-card {
  position: relative;
  overflow: hidden;
}

.exl-media-card article {
    height: 100%;
}
 
.exl-media-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 70%;
  top: 0;
  left: 0;
  background: linear-gradient(179.81deg, #000000 33.6%, rgba(0, 0, 0, 0) 99.84%);
  z-index: 1;
  opacity: 0.8;
}
 
.exl-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
}
 
.exl-media-card:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
 
.exl-media-card-lg {
  height: 164px;
}
 
.exl-media-card-sm {
  height: 151px;
}
 
.exl-media-overlay {
  position: absolute;
  inset: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.exl-media-card a:hover,
.exl-media-card a:focus {
  color: #ffffff !important;
  text-decoration: none !important;
}
 
.exl-media-overlay h2 {
  margin: 0;
  font-size: 32px;
  line-height: 36px;
  font-weight: 300;
  color: var(--exl-white);
  position: relative;
  width: 120px;
}
 
 
.exl-media-link, .exl-btn-link {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    color: var(--exl-black);
    text-decoration: none;
    white-space: nowrap;
}
 
.exl-media-link {
    margin-top: 16px;
    color: var(--exl-white);
}

.exl-media-link:hover {
    color: var(--exl-white);
}
 
.exl-media-link span, .exl-btn-link span {
    padding-left: 12px;
}
 
.exl-media-card-sm .exl-media-overlay h2 {
  font-size: 24px;
  line-height: 28px;
}
 
.exl-media-card-sm .exl-media-link {
  font-size: 16px;
}
 
.exl-capabilities {
  background: var(--exl-slate);
  color: var(--exl-white);
  position: relative;
}
 
.exl-capabilities::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 265px;
  background-image: url(../../images/wm-banner/capability-pattern.png);
  background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    background-size: cover;
}
 
.exl-section-head {
  margin-bottom: 24px;
}
 
.exl-section-head .banner-heading {
  font-size: 44px;
  line-height: 54px;
  font-weight: 300;
  position: relative;
  padding-bottom: 24px;
}
 
.exl-section-head .banner-heading-sm {
  font-size: 20px;
  line-height: 25px;
}
 
.exl-section-head .banner-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 98px;
  border-bottom: 3px solid var(--exl-primary);
}
 
.exl-section-head h2 {
  margin: 0;
  font-size: 44px;
  line-height: 54px;
  font-weight: 300;
  max-width: 100%;
}
 
.exl-cap-card {
  height: 100%;
  color: var(--exl-ink);
  display: flex;
  flex-direction: column;
}
 
.exl-cap-card .exl-cap-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.exl-cap-card .exl-cap-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.exl-cap-card .exl-cap-card-copy {
  padding: 32px;
  height: 321px;
  display: flex;
  flex-direction: column;
  background: var(--exl-white);
}
 
.exl-cap-card h3 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 36px;
  font-weight: 300;
  min-height: 72px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
 
.exl-cap-card p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 6; /* Number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
 
.exl-cap-card .exl-btn-link {
  margin-top: auto;
}
 
.exl-capabilities,
.exl-industries,
.exl-insights,
.exl-analyst,
.exl-testimonials,
.exl-partners,
.exl-achievements,
.exl-awards-grid,
.exl-humans,
.exl-media-strip {
  padding: 60px 0;
}
 
.exl-industries h2,
.exl-partners h2,
.exl-achievements h2,
.exl-testimonials h2,
.exl-humans h2,
.exl-awards-copy h2,
.exl-footer-top h2 {
  margin: 0 0 20px;
  font-size: 44px;
  line-height: 54px;
  font-weight: 300;
}
 
/* Industry tabs */
 
.exl-industry-left .banner-heading {
  width: 90%;
}
 
.exl-industry-list {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 4px;
  padding-bottom: 4px;
}
 
.exl-industry-list::-webkit-scrollbar {
  display: none;
}
 
.exl-industry-list li {
  flex-shrink: 0;
  list-style-type: none;
}
 
.exl-industry-list .nav-link {
  border: 0;
  background: transparent;
  font-size: 24px;
  line-height: 32px;
  font-weight: 300;
  color: var(--exl-tab);
  padding: 6px 10px;
  border-radius: 0;
  cursor: pointer;
  min-height: 42px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.exl-industry-list .nav-link:hover,
.exl-industry-list .nav-link:focus {
  background: var(--exl-light-blue);
  color: var(--exl-black);
  box-shadow: none;
  outline: none;
}
 
.exl-industry-list .nav-link.active {
  background: var(--exl-light-blue);
  color: var(--exl-black);
}
 
/* Industry right column */
.exl-industry-right {
  position: relative;
}
 
/* Slick overrides display:block on slides — restore flex */
.industry-case-slider {
  margin-bottom: 0 !important;
  overflow: inherit;
}
 
.exl-industry-slide {
  padding-right: 121px;
}
 
.industry-case-slider .exl-industry-slide-item {
  display: flex !important;
  align-items: center;
  min-height: 498px;
  background: var(--exl-neutral);
}
 
/* Industry case-slider arrows */
.industry-case-slider .slick-prev,
.industry-case-slider .slick-next {
  width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    z-index: 10;
    top: 50%;
    margin-top: -25px;
    box-shadow: 0px 4px 4px 0px #00000040;
}
 
.industry-case-slider .slick-prev {
  left: -25px;
}
 
.industry-case-slider .slick-next {
  right: -25px;
}
 
.industry-case-slider .slick-disabled::before {
  filter: grayscale(1);
}
 
.industry-case-slider .slick-prev:hover,
.industry-case-slider .slick-next:hover {
  background: var(--exl-white);
}
 
.industry-case-slider .slick-prev:before {
   content: "";
  background-image: url(../../images/svg-icons/slick-left.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  display: block;
}
 
.industry-case-slider .slick-next:before {
  content: "";
  background-image: url(../../images/svg-icons/slick-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  display: block;
}
 
/* Industry case-slider dots */
.industry-case-slider .slick-dots {
  position: relative;
  bottom: 0;
  display: none !important;
  padding: 20px 16px 0 !important;
  text-align: left;
}
 
.industry-case-slider .slick-dots li {
  width: auto;
  height: auto;
  margin: 0 4px 0 0;
}
 
.industry-case-slider .slick-dots li button:before {
  display: none;
}
 
.industry-case-slider .slick-dots li button {
  width: 30px;
  height: 4px;
  border-radius: 4px;
  background-color: #c8cbd0;
  padding: 0;
}
 
.industry-case-slider .slick-dots li.slick-active button {
  background-color: var(--exl-primary);
}
 
/* Industry slide layout */
.exl-industry-slide-item {
  display: flex;
  flex-direction: column;
}
 
/* Industry content panel */
.exl-industry-panel {
  background: var(--exl-neutral);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
 
}
 
.exl-industry-panel .exl-industry-kicker {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
  color: var(--exl-shade-1);
}
 
.exl-industry-panel h3 {
  margin: 0 0 40px;
  font-size: 32px;
  line-height: 36px;
  font-weight: 300;
}
 
.exl-industry-panel .exl-industry-solution-label {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
  color: var(--exl-shade-1);
}
 
.exl-industry-panel .exl-industry-body {
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
  color: var(--exl-black);
}
 
.exl-industry-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: var(--exl-ink);
  text-decoration: none;
  transition: color 0.2s ease;
}
 
.exl-industry-cta span {
  color: var(--exl-primary);
}
 
.exl-industry-cta:hover {
  color: var(--exl-primary);
}
 
/* Industry case study card */
.exl-industry-casestudy {
  position: relative;
  overflow: hidden;
  height: calc(100% - 90px);
  flex-shrink: 0;
  width: 100%;
  max-width: 440px;
  margin-right: -121px;
}
 
.exl-industry-casestudy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
 
.exl-industry-casestudy:hover img {
  transform: scale(1.04);
}
 
.exl-cs-badge {
  position: absolute;
  top: 32px;
  left: 32px;
  height: 27px;
  display: flex;
  align-items: center;
  z-index: 2;
  background: #2E3643;
  color: var(--exl-white);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 5px 15px;
  border-radius: 5px;
  letter-spacing: 0.01em;
}
 
.exl-cs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20.74%, rgba(0, 0, 0, 0.6) 81.38%);
 
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  z-index: 1;
}
 
.exl-cs-overlay h4 {
    margin: 0 0 12px;
    color: var(--exl-white);
    font-size: 28px;
    line-height: 32px;
    font-weight: 300;
    width: 100%;
}
 
.exl-cs-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--exl-white);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
}
 
.exl-cs-link span {
  color: var(--exl-primary);
}
 
.exl-cs-link:hover {
  color: var(--exl-primary);
}
 
.exl-humans-copy p,
.exl-awards-copy p,
.exl-media-tile p {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
}
 
/* Insights & Resources */
.exl-insights {
  background: var(--exl-neutral);
}
 
.exl-insight-card {
  border: none;
  height: 100%;
  background: var(--exl-white);
  display: flex;
  flex-direction: column;
}
 
.exl-insight-card-lg .exl-insight-card-img{
  height: 530px;
}
 
.exl-insight-card-md .exl-insight-card-img{
  height: 189px;
}
 
.exl-insight-card-sm .exl-insight-card-img{
  height: 139px;
}
 
.exl-insight-card .exl-insight-card-img {
  padding: 0;
  position: relative;
}
 
.exl-play-btn {
    position: absolute;
    bottom: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    right: 0;
    padding: 0;
    display: flex;
    align-items: center;
    margin: 14px;
    text-decoration: none;
}
 
.exl-media-popup .modal-content {
    background: transparent;
    box-shadow: none !important;
    border: none;
}
 
.exl-media-popup .modal-header {
  background: transparent;
  border-bottom: 0;
}
 
.exl-media-popup .modal-body {
    padding: 0;
}
 
.exl-media-popup video,
.exl-media-popup iframe {
    width: 100%;
    height: auto;
    display: block;
}
 
 
.exl-play-btn:hover {
    color: var(--exl-white);
    text-decoration: none;
}
 
.exl-insight-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.exl-insight-card-copy {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
 
.exl-insight-card-lg .exl-insight-card-copy {
  padding: 24px;
}
 
.exl-insight-card .badge {
  background: var(--exl-neutral);
  color: var(--exl-black);
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 20px;
  height: 27px;
  display: flex;
  align-items: center;
  border-radius: 5px;
}
 
.exl-insight-card-lg .badge {
  background: #2E3643;
  color: var(--exl-white);
}
 
.exl-insight-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: var(--exl-black);
  min-height: 48px;
}
 
.exl-insight-card-sm h3 {
    min-height: 88px;
}
 
.exl-insight-card-lg .exl-insight-card-copy h3 {
  font-size: 24px;
  line-height: 27px;
}
 
.exl-card-date {
  margin-top: 8px;
  display: flex;
  align-items: center;
  width: 100%;
}
 
.exl-card-date p {
 font-weight: 400;
  font-size: 14px;
  line-height: 14.4px;
  letter-spacing: -0.14px;
  color: #838383;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  height: 100%;
}
 
.exl-card-date p span {
  display: block;
  width: 1px;
  height: 14px;
  background-color: #787878;
  margin: 0 8px;
}
 
.insights-cta {
  margin-top: 30px;
}
 
/* News letter */
.exl-newsletter {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
 
.exl-newsletter .form-label {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}
 
.exl-newsletter-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
 
.exl-newsletter .form-control {
  border-radius: 0;
  min-height: 44px;
  border: 1px solid #b6b6b6;
}
 
/* default form */
 
.exl-newsletter-controls form {
    display: flex;
    align-items: center;
    position: relative;
}
 
.exl-newsletter-controls .hs_email.hs-email.hs-fieldtype-text.field.hs-form-field {
    position: relative;
}
 
.exl-newsletter-controls .hs_i_have_read_and_accepted_the_privacy_policy.hs-i_have_read_and_accepted_the_privacy_policy.hs-fieldtype-booleancheckbox.field.hs-form-field {
   display: none;
}
 
.exl-newsletter-controls .hs-input {
  background: none;
  border: 2px solid #DBDBDB;
  font-size: 15px;
  line-height: 19px;
  font-weight: 400;
  font-family: "Yantramanav", Sans-Serif;
  height: 44px !important;
  border-radius: 0;
  color: var(--exl-black);
  width: 306px !important;
}
 
.exl-newsletter-controls label {
  display: none !important;
}
 
.exl-newsletter-controls ul.no-list.hs-error-msgs.inputs-list {
    position: absolute;
    top: 100%;
}
 
.exl-newsletter-controls input.hs-button.primary.large {
    height: 44px;
    padding: 0 !important;
    border-radius: 0 !important;
    border: 2px solid #FB4E0B !important;
    color: #000000 !important;
    background: transparent !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    display: flex;
    align-items: center;
    width: 130px !important;
    min-width: 130px !important;
}
 
.exl-newsletter-controls input.hs-button.primary.large:hover {
    background: var(--exl-primary) !important;
    color: var(--exl-white) !important;
}

.fd-footer.ng-footer .footer-top {
  padding-top: 0 !important;
}

.fd-footer.ng-footer .footer-top .exl-container {
  padding-top: 68px !important;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ng-site-header {
    height: 85px !important;
    margin-bottom: 0 !important;
    z-index: 10;
  }

.main-container.js-quickedit-main-content {
  margin-top: 85px !important;
  padding-top: 0 !important;
}

.ng-site-header .exl-container, .exl-hero .exl-shell, .exl-capabilities .exl-shell, .exl-industries .exl-shell, .exl-insights .exl-shell, .exl-analyst .exl-shell, .wme-testimonials-section .exl-container, .wm-partners-section .exl-container, .wm-achievements-section .exl-container, .wme-award-section .exl-container, .footer-top .exl-container {
  padding: 0 68px !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
}

@media screen and (max-width: 767px) {
  .exl-newsletter-controls form {
    flex-direction: column;
  }
 
  .exl-newsletter-controls .hs_email.hs-email.hs-fieldtype-text.field.hs-form-field {
    width: 100%;
  }
 
  .exl-newsletter-controls .hs_submit.hs-submit {
    width: 100%;
    margin-top: 20px;
  }
 
  .exl-newsletter-controls input.hs-button.primary.large {
    width: 100% !important;
  }
 
  .exl-newsletter-controls .hs_submit .actions {
    text-align: center;
    padding: 0 !important;
    width: 100% !important;
  }
 
  .exl-newsletter-controls .hs-input {
    width: 100% !important;
  }
 
  .exl-newsletter-controlsul.no-list.hs-error-msgs.inputs-list {
    position: relative;
    top: 0;
  }
 
  .exl-newsletter .form-label {
    width: 200px;
  }

  .top-ai-banner {
    height: 52px;
    min-height: 44px;
    padding-inline: 16px;
    justify-content: space-between !important;
    padding: 0 16px !important;
  }
  
  .top-ai-banner .banner-text {
      font-size: 16px;
      line-height: 20px;
      max-width: 220px;
      text-align: left;
  }
  .top-ai-banner .banner-link-wrapper a {
    font-size: 16px;
    line-height: 20px;
    color: #000000;
  }
  
  .top-ai-banner .banner-link-wrapper a img {
    height: 16px;
    width: 16px;
  }

  .ng-site-header .logo-wrap .logo {
    align-items: center;
    justify-content: center;
    display: flex;
    margin-left: 0 !important;
  }

  /*
  .ng-site-header .mobile-menu .menu-button .menu-global {
    width: 27px !important;
    left: 10px !important;
  } */

  .ng-site-header .mobile-menu .menu-button .menu-global.menu-top {
    bottom: 34px !important;
  }

  .ng-site-header .mobile-menu .menu-button .menu-global.menu-middle {
    bottom: 25px !important;
  }

  .ng-site-header .mobile-menu .menu-button .menu-global.menu-bottom {
    bottom: 1pc !important;
  }

  .ng-site-header .mobile-menu.nav-open .menu-global.menu-top, .ng-site-header .mobile-menu.nav-open .menu-global.menu-bottom {
    width: 22px !important;

  }

  .ng-site-header .exl-container, .exl-hero .exl-shell, .exl-capabilities .exl-shell, .exl-industries .exl-shell, .exl-insights .exl-shell, .exl-analyst .exl-shell, .wme-testimonials-section .exl-container, .wm-partners-section .exl-container, .wm-achievements-section .exl-container, .wme-award-section .exl-container, .footer-top .exl-container {
    padding: 0 24px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
  
  .ng-site-header .navbar-header .search-icon {
    margin-right: -10px;
  }

  .ng-site-header .mobile-menu .menu-button {
    left: -10px;
  }
}
 
 
/* Analyst Recognition */
.exl-analyst {
  background-color: var(--exl-white);
  position: relative;
}
 
.exl-analyst::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 378px;
    background-image: url(../../images/wm-banner/analyst-bg-pattern.png);
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    background-size: cover;
}
 
.exl-analyst .exl-shell {
  position: relative;
  z-index: 2;
}
 
.exl-analyst .exl-section-head {
  padding-right: 10%;
}
 
.exl-analyst .exl-section-head h2 {
  margin-bottom: 32px;
}
 
.exl-award-card {
  min-height: 228px;
  background: var(--exl-light-blue);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
}
 
.exl-award-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 400;
}
 
.exl-award-card-img img {
    max-height: 64px;
}
 
.exl-award-card p {
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
    margin: 0 !important;
    color: var(--exl-black);
}
 
/* Testimonials */
.exl-testimonials {
  background: #f2f4f7;
}
 
.exl-testimonial-card {
  background: var(--exl-white);
  min-height: 440px;
  padding: 44px;
  margin: 0 10px;
}
 
.exl-testimonial-card p {
  margin: 0 0 28px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 300;
}
 
.exl-testimonial-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
}
 
.exl-partners {
  background: var(--exl-white);
}
 
.logos-slider .exl-logo-pill {
  border: 1px solid #e8e8e8;
  background: var(--exl-white);
  min-height: 102px;
  padding: 20px;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.exl-logo-pill img {
  max-height: 56px;
  width: auto;
}
 
.exl-achievements {
  background: var(--exl-slate);
  color: var(--exl-white);
}
 
.exl-stat-card {
  border: 1px solid rgba(255, 255, 255, 0.3);
  min-height: 190px;
  padding: 28px;
}
 
.exl-stat-card h3 {
  margin: 0 0 10px;
  font-size: 60px;
  line-height: 1;
  font-weight: 300;
}
 
.exl-stat-card p {
  margin: 0;
  font-size: 22px;
  line-height: 26px;
  font-weight: 300;
}
 
.exl-awards-grid {
  background: #f7f9fb;
}
 
.exl-awards-copy,
.exl-awards-item {
  min-height: 226px;
  background: var(--exl-white);
  padding: 30px;
}
 
.exl-awards-item h3 {
  margin: 0;
  font-size: 22px;
  line-height: 30px;
  font-weight: 300;
}
 
.exl-humans {
  padding: 0;
}
 
.exl-human-mosaic {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
 
.exl-human-mosaic img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
 
.exl-humans-copy {
  background: var(--exl-white);
  padding-top: 38px;
  padding-bottom: 32px;
}
 
.exl-humans-copy h2 {
  margin-bottom: 10px;
}
 
.exl-media-strip {
  padding-top: 0;
}
 
.exl-media-tile {
  background: #f7f7f8;
  padding: 28px;
  min-height: 118px;
}
 
.exl-media-year {
  display: inline-block;
  min-width: 88px;
  font-size: 32px;
  line-height: 1;
  font-weight: 300;
  color: var(--exl-primary);
}
 
.exl-media-tile h3 {
  margin: 8px 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 300;
}
 
.exl-footer {
  background: #f1f2f4;
}
 
.exl-footer .exl-shell {
  padding-top: 22px;
}
 
.exl-footer-accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: #bfc3ca;
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 18px;
  --bs-accordion-btn-icon-width: 1rem;
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fb4e0b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fb4e0b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-active-color: var(--exl-slate);
}
 
.exl-footer-item {
  border: 0;
  border-top: 1px solid #bfc3ca;
}
 
.exl-footer-item:first-child {
  border-top: 0;
}
 
.exl-footer-item .accordion-button {
  background: transparent;
  color: var(--exl-slate);
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 0;
  margin-bottom: 12px;
}
 
.exl-footer-item .accordion-button:not(.collapsed) {
  box-shadow: none;
}
 
.exl-footer-item .accordion-button::after {
  margin-left: auto;
  width: 24px;
  height: 24px;
}
 
.exl-footer-item .accordion-button:focus {
  box-shadow: none;
}
 
.exl-footer-item .accordion-body {
  padding: 0 0 18px;
}
 
.exl-footer h3 {
  margin: 0 0 14px;
  color: #657083;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}
 
.exl-footer ul {
  margin: 0;
}
 
.exl-footer li {
  margin-bottom: 10px;
}
 
.exl-footer a,
.exl-footer li,
.exl-footer p {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  color: var(--exl-slate);
  text-decoration: none;
}
 
.exl-footer-subgroups {
  display: grid;
  gap: 28px;
}
 
.exl-footer-bottom {
  border-top: 1px solid #bfc3ca;
  padding: 16px 0 26px;
}
 
.exl-footer-bottom p {
  font-size: 16px;
  line-height: 22px;
  color: #20232a;
}
 
.slick-prev:before,
.slick-next:before {
  color: var(--exl-primary);
}
 
/* Responsive Css Starts */
@media (max-width: 1199.98px) {
  .hero-media-slider .slick-track,
  .testimonials-slider .slick-track,
  .logos-slider .slick-track,
  .capabilities-slider .slick-track {
    display: flex;
  }
 
  .hero-media-slider .slick-slide,
  .testimonials-slider .slick-slide,
  .logos-slider .slick-slide,
  .capabilities-slider .slick-slide {
    height: inherit;
  }
 
  .hero-media-slider .slick-slide > div,
  .testimonials-slider .slick-slide > div,
  .logos-slider .slick-slide > div,
  .capabilities-slider .slick-slide > div {
    height: 100%;
  }
 
  .exl-testimonial-card {
    min-height: 280px;
    padding: 28px;
  }
 
  .exl-testimonial-card p {
    font-size: 26px;
    line-height: 1.25;
  }
 
  .exl-human-mosaic {
    grid-template-columns: repeat(3, 1fr);
  }
}
 
@media (min-width: 992px) {
  .exl-hero {
    min-height: 700px;
    padding: 0 0 80px;
    position: relative;
  }

  .exl-hero .exl-shell {
    padding-top: 100px !important;
  }
 
  .exl-hero-copy h1 {
    font-size: 60px;
    line-height: 64px;
  }
 
  .exl-media-card-lg {
    height: 463px;
  }
 
  .exl-media-card-sm {
    height: 220px;
  }
 
  .hero-media-slider {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 20px;
  }
 
  .hero-media-slider .exl-media-card-lg {
    grid-row: 1 / span 2;
  }
 
  .exl-newsletter {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
 
  .exl-newsletter-controls {
    flex-direction: row;
    min-width: 448px;
  }
 
  .exl-newsletter .form-control {
    flex: 1;
  }
 
  /* Desktop: vertical tabs via flex-lg-column Bootstrap utility */
  .exl-industry-list li {
      margin-top: 15px;
  }
 
  /* Desktop slide: text panel + image side by side */
  .exl-industry-slide-item {
    flex-direction: row;
  }
}
 
@media (max-width: 991.98px) {
  .exl-hero-copy h1 {
    font-size: 40px;
    line-height: 40px;
  }
 
  .exl-stat-card h3 {
    font-size: 42px;
  }
 
  .exl-stat-card p,
  .exl-awards-item h3,
  .exl-media-tile h3 {
    font-size: 18px;
    line-height: 24px;
  }
 
  .exl-newsletter-controls {
    flex-direction: column;
  }
 
  .exl-footer-item .accordion-button {
    font-size: 30px;
    line-height: 34px;
  }
 
  .exl-footer h3 {
    font-size: 17px;
    line-height: 22px;
  }
 
  .exl-footer a,
  .exl-footer li,
  .exl-footer p {
    font-size: 16px;
    line-height: 21px;
  }
 
  .exl-footer-bottom p {
    font-size: 15px;
  }

  .ng-site-header {
    height: 56px !important;
    margin-bottom: 0 !important;
  }

.main-container.js-quickedit-main-content {
    margin-top: 56px !important;
    padding-top: 0 !important;
  }

}
 
@media screen and (max-width: 991.98px) {
  .hero-media-slider {
    display: grid;
    grid-template-columns: 1fr 50%;
    gap: 8px;
  }
 
  .exl-hero-copy .exl-btn {
      margin-top: 44px;
      margin-bottom: 56px;
  }
 
  .exl-media-card {
    margin-bottom: 0;
  }
  .hero-media-slider .exl-media-card-lg {
        grid-column: 1 / span 2;
  }
 
  .exl-media-card-lg {
    height: 240px;
  }
 
  .exl-media-card-sm {
    height: 200px;
  }
 
  /* Our capabilities */
  .exl-capabilities::before {
    background-image: url(../../images/wm-banner/capability-pattern-mobile.png);
  }
 
  .exl-capabilities .exl-shell {
    padding: 0 !important;
  }
 
  .exl-capabilities .exl-section-head {
    padding: 0 68px;
  }
 
  .capabilities-slider {
    margin: 0 !important;
  }
 
  .capabilities-slider .slick-list {
    padding: 0 56px;
  }
 
  .capabilities-slider .slick-slide {
    padding: 0 12px;
  }
 
 
  .capabilities-slider .slick-dots {
    position: relative;
    bottom: 0;
    display: flex;
    padding: 32px 68px 0 !important;
  }
 
  .capabilities-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0 4px 0 0 !important;
  }
 
  .capabilities-slider .slick-dots li button:before {
    display: none;
  }
 
  .capabilities-slider .slick-dots li button {
    width: 30px;
    height: 4px;
    border-radius: 4px;
    background-color: #6D727B;
    overflow: hidden;
    padding: 0;
  }
 
  .capabilities-slider .slick-dots li.slick-active button {
    background-color: var(--exl-primary);
  }
 
  /* Industry Page */
  .exl-industry-slide {
    padding-right: 0;
  }
 
  .industry-case-slider .exl-industry-slide-item {
    height: auto;
  }
 
  .exl-industry-panel {
    padding: 24px 16px 28px;
  }
 
  .exl-industry-kicker, .exl-industry-solution-label {
    font-size: 16px;
    line-height: 20px;
  }
 
  .exl-industry-panel h3 {
    margin: 0 0 24px;
    font-size: 28px;
    line-height: 32px;
  }
 
  .exl-industry-body {
    margin-bottom: 24px;
  }
 
  .exl-industry-casestudy {
    position: relative;
    overflow: hidden;
    height: 400px;
    flex-shrink: 0;
    width: calc(100% - 32px);
    margin-right: 0;
  }
 
  .exl-cs-overlay h4 {
    width: 100%;
  }
 
  .exl-industry-casestudy .exl-cs-badge {
    top: 20px;
    left: 16px;
  }
 
  .exl-industry-casestudy .exl-cs-overlay {
    padding: 20px 16px;
  }
 
  .industry-case-slider .exl-industry-slide-item {
    background: transparent;
  }
 
  .industry-case-slider .exl-industry-slide-item::before {
      position: absolute;
      width: 100%;
      height: calc(100% - 78px);
      content: '';
      top: 0;
      left: 0;
      right: 0;
      background: var(--exl-neutral);
      z-index: -1;
  }
 
  /* Insights */
  .exl-insight-card-sm h3 {
      min-height: inherit;
  }
 
  .exl-insight-card-lg .exl-insight-card-img {
      height: 300px;
  }
 
  .insights-cta {
    margin-top: 20px;
  }

  .exl-media-card::before {
    width: 70%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg, #000 33.6%, rgba(0, 0, 0, 0.00) 99.84%);
    opacity: 0.8;
  }

  .wme-testimonials-section .exl-container {
    padding-right: 0 !important;
  }
  
}
 
@media screen and (max-width: 767.98px) {
  .exl-capabilities,
  .exl-industries,
  .exl-insights,
  .exl-analyst,
  .exl-testimonials,
  .exl-partners,
  .exl-achievements,
  .exl-awards-grid,
  .exl-humans,
  .exl-media-strip {
    padding: 32px 0;
  }
 
  .exl-btn {
    font-size: 16px;
    line-height: 20px;
  }
 
  .exl-btn.btn-sm {
    font-size: 14px;
    line-height: 18px;
  }
 
  .exl-shell {
      padding: 0 24px;
  }
 
  .exl-ticker .exl-shell {
    padding: 12px 24px;
    justify-content: space-between;
  }
 
  .exl-ticker .exl-shell p {
    width: 65%;
  }
 
  /* Hero banner */
  .exl-hero {
    min-height: 500px;
    padding: 0px 0;
  }

  .exl-hero .exl-shell {
    padding: 40px 24px 28px 24px !important;
  }
 
  .exl-hero-copy {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
 
  .exl-accent-bar {
    width: 12px;
  }
 
  .exl-hero-copy h1 {
    font-size: 40px;
    line-height: 40px;
  }
 
  .exl-hero-copy .exl-btn {
      margin-top: 20px;
  }
 
  .exl-media-card-lg {
    height: 164px;
  }
 
  .exl-media-card-sm {
    height: 151px;
  }
 
  .exl-media-overlay h2 {
    font-size: 21px;
    line-height: 25px;
  }
 
  .exl-media-link {
    font-size: 16px;
    margin-top: 6px;
  }
 
  /* Our capabilities */
  .exl-capabilities .exl-shell {
    padding: 0 !important;
  }
 
  .exl-capabilities .exl-section-head {
    padding: 0 24px;
  }
 
  .capabilities-slider {
    margin: 0;
  }
 
  .exl-section-head .banner-heading {
    padding-bottom: 20px;
  }
 
  .exl-section-head .banner-heading::after {
    width: 78px;
  }
 
  .exl-section-head h2 {
    margin: 0;
    font-size: 32px !important;
    line-height: 36px !important;
  }
 
  .exl-cap-card h3 {
    width: 70%;
  }
 
  .capabilities-slider .slick-list {
    padding: 0 12px;
  }
 
  .capabilities-slider .slick-dots {
    padding: 32px 24px 0 !important;
  }
 
  /* Industry */
  .industry-case-slider .slick-dots {
    display: flex !important;
  }
 
  .industry-case-slider .slick-arrow {
    display: none !important;
  }
 
  .exl-industry-casestudy {
    height: 100%;
  }
 
  /* Analyst Recognition */
  .exl-analyst::before {
      content: "";
      position: absolute;
      top: 260px;
      width: 100%;
      height: 256px;
      background-image: url(../../images/wm-banner/analyst-bg-pattern-mobile.png);
      background-repeat: no-repeat;
      background-position: center;
      z-index: 1;
      background-size: cover;
  }
 
  .exl-analyst .exl-section-head h2 {
    margin-bottom: 24px;
  }
 
  .exl-award-card {
    min-height: 162px;
    padding: 20px;
  }
 
  .exl-award-card p {
    font-size: 18px;
    line-height: 22px;
  }
 
  /* Insights */
  .exl-insight-card .exl-insight-card-img {
      height: 139px !important;
  }
 
  .exl-footer .exl-shell {
    padding-top: 0;
  }
 
  .exl-footer-item {
    border-top: 1px solid #bfc3ca;
  }
 
  .exl-footer-item .accordion-button {
    font-size: 18px;
    line-height: 24px;
    padding: 20px 0;
  }
 
  .exl-footer-item .accordion-button::after {
    width: 20px;
    height: 20px;
  }
 
  .exl-footer-item .accordion-body {
    padding-bottom: 26px;
  }
 
  .exl-footer-subgroups {
    gap: 30px;
  }
 
  .exl-footer h3 {
    font-size: 16px;
    line-height: 20px;
  }
 
  .exl-footer a,
  .exl-footer li {
    font-size: 16px;
    line-height: 21px;
  }
 
  .exl-footer li {
    margin-bottom: 14px;
  }
 
  .exl-footer-bottom {
    padding: 16px 0 20px;
  }
 
  .exl-footer-bottom p {
    font-size: 17px;
    line-height: 23px;
  }
 
}
 
@media (min-width: 768px) {
  .exl-footer-accordion {
    display: grid;
    grid-template-columns: 2.35fr 1.22fr 1fr 1fr;
    grid-template-rows: auto auto;
    column-gap: 56px;
    row-gap: 0;
    padding-top: 50px;
    padding-bottom: 36px;
  }
 
  .exl-footer-item {
    border-top: 0;
  }
 
  .exl-footer-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
 
  .exl-footer-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
 
  .exl-footer-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }
 
  .exl-footer-item:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
    margin-top: 8px;
  }
 
  .exl-footer-item:nth-child(5) {
    grid-column: 4;
    grid-row: 1 / span 2;
  }
 
  .exl-footer-item .accordion-header {
    margin-bottom: 12px;
  }
 
  .exl-footer-item .accordion-button::after {
    display: none;
  }
 
  .exl-footer-item .accordion-collapse {
    display: block !important;
  }
 
  .exl-footer-item .accordion-body {
    padding: 0;
  }
 
  .exl-footer-subgroups {
    grid-template-columns: repeat(3, minmax(170px, 1fr));
    gap: 24px 34px;
  }
 
  .exl-footer h3 {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 20px;
  }
 
  .exl-footer a,
  .exl-footer li {
    font-size: 16px;
    line-height: 21px;
    letter-spacing: -0.01em;
  }
 
  .exl-footer li {
    margin-bottom: 11px;
  }
 
  .exl-footer-bottom {
    border-top: 0;
    padding: 18px 0 30px;
  }
 
  .exl-footer-bottom p {
    font-size: 16px;
    line-height: 22px;
  }
}
  
@media (min-width: 1200px) {
  .exl-footer-accordion {
    column-gap: 70px;
  }
 
  .exl-footer a,
  .exl-footer li {
    font-size: 16px;
    line-height: 21px;
  }

  .ng-site-header .logo-wrap .logo {
    padding: 0 !important;
    align-items: center;
    display: flex;
  }

  .ng-site-header .mobile-menu .menu-button {
    top: 0px !important;
    height: 56px !important;
  }
}

.top-ai-banner {
    background: #D5D7D9;
    min-height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    padding: 0 12px;
    text-align: center;
}

.banner-text {
    font-weight: 400;
}

.banner-text,
.banner-text * {
    margin: 0;
    display: inline;
}

.banner-link-wrapper,
.banner-link-wrapper .field,
.banner-link-wrapper .field__item {
    display: inline;
    margin: 0;
}

.banner-link-wrapper a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #111827;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s;
}

.banner-link-wrapper a:hover {
    color: #ff6a00;
}
