#myTabs a {
  text-decoration: none;
  color:var(--pe_old);
  padding:8px;
}
#myTabs a:hover {
  color:var(--pe_blue);
}
#myTabs a:focus {
  outline: none;
}
#myTabs a.active {
  color:var(--pe_blue);
  border-bottom:4px solid var(--pe_blue);
}
.tab-pane .industryTabs li {
  margin-bottom: 20px;
}
.tab-pane .industryTabs li:last-child {
  margin-bottom: 0;
}
.tab-pane .industryTabs li a .img-fluid {
  filter: grayscale(1);
  width:22px;
  height:auto;
  margin-right:20px;
}
.tab-pane .industryTabs li a:hover .img-fluid,
.tab-pane .industryTabs li a.active .img-fluid{
  filter: grayscale(0);
}
.tab-pane .industryTabs li a.active {
  color:var(--pe_blue);
}
.tab-content .bg_pe_light_bluegray {
  border-radius:var(--border_radius_5);
}
.industry_tabs.bg_pe_light_bluegray li a:active,
.industry_tabs.bg_pe_light_bluegray li a:focus,
.industry_tabs.bg_pe_light_bluegray li a {
  line-height:1.6;
  color: var(--pe_blue);
  text-decoration: none;
}
.industry_tabs.bg_pe_light_bluegray li a:hover {
  color: var(--pe_deep_blue);
  text-decoration: underline;
}
.industry_tabs.bg_pe_light_bluegray li {
  line-height:1.3;
  font-size:16px;
  padding-right: 30px;
  position: relative;
  padding-left: 30px; /* Adjust this based on your icon's width */
  min-height: 26px;
}

/*.industry_tabs.bg_pe_light_bluegray li::before {
  content: "\f1cb";
  font-family: 'icomoon' !important;
  font-size: 25px;
  color: var(--pe_blue);
  position: absolute;
  left: 0;
  top: 10px;
  transform: translateY(-50%);
}*/
.industry_tabs.bg_pe_light_bluegray li a::after {
  content: "\e900";
  font-family: 'icomoon' !important;
  font-size: 9px;
  color: var(--pe_blue);
  position: absolute;
  right: -16px;
  top: 12px;
  transform: translateY(-50%);
}
.industry_tabs.bg_pe_light_bluegray li a {
  position: relative;
  /*top:-5px;*/
}
.industry_tabs.bg_pe_light_bluegray li a,
.industry_tabs.bg_pe_light_bluegray li span {
  font-family: var(--latoregular);
  line-height: 25.6px;
}
.inner_most_list {
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: row;
}

@media (max-width:991px) {
  #myTabs {
    display: none !important;
  }
  #mobileDropdown {
    display: inline-block !important;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    border: 0;
    width: fit-content;
    font-size: 18px;
    font-weight: 700;
    float: left;
  }
  .tab-pane .industryTabs {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap; /* Prevent wrapping of list items */
    -webkit-overflow-scrolling: touch; /* Enable momentum scrolling on iOS devices */
    -ms-overflow-style: -ms-autohiding-scrollbar; /* Hide scrollbar in IE and Edge */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    max-width: 100%; /* Ensure the container doesn't exceed the screen width */
    -webkit-app-region: drag; /* Enable draggable area */
    display: flex !important;
    align-items: flex-start;
    justify-content: flex-start !important;
    padding:0;
  }

  .tab-pane .industryTabs::-webkit-scrollbar {
      display: none; /* Hide scrollbar in Webkit browsers (Chrome, Safari) */
  }
  .tab-pane .industryTabs li a {
    text-align:center;
    display:block !important;
    padding-top: 5px;
    width: 80px;
  }
  .tab-pane .industryTabs li a span:last-of-type {
    display:block !important;
  }
  .tab-pane .industryTabs li a .img-fluid {
    margin-right: 0;
  }
  .icon_wrap {
    text-align:center;
    width:56px;
    height:56px;
    align-items: center;
    justify-content: center;
    background-clip: padding-box;
    border: solid 2px transparent;
    border-radius: 100%;
    position: relative;
    background:var(--pe_white);
    display: block;
  }
  .icon_wrap:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -4px;
    border-radius: inherit;
    background: linear-gradient(80deg, var(--pe_old), var(--pe_border));
  }
  .tab-pane .industryTabs li a.active .icon_wrap:before,
  .tab-pane .industryTabs li:hover a .icon_wrap:before {
    background: linear-gradient(80deg, var(--pe_deep_blue), var(--pe_blue));
  }
  .tab-pane .industryTabs li {
    display:inline-block !important;
    margin-right: 5px;
    max-width: 80px;
  }
  .tab-pane .industryTabs li:last-of-type {
    margin-right: 0;
  }
  .tab-pane .industryTabs li a span:last-of-type {
    font-weight: 400;
    font-size: 12px;
    overflow: hidden;
    white-space: initial;
    line-height: 1.1;
    max-width: 80px;
    text-overflow: ellipsis;
    box-sizing: border-box;
    word-break: break-word;
    margin-top: 10px;
  }
  .industry_usecase .container .row:last-child .col .tab-content .tab-pane .row {
    margin:0 -20px;
  }
}
@media(min-width:992px) {
  #myTabs {
    display: block !important;
  }
  #mobileDropdown {
    display: none !important;
  }
}