.leaders {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .leaders {
    padding: 64px 0;
  }
}
.leaders__label {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  text-transform: uppercase;
  color: #17171C;
  text-align: center;
  margin-bottom: 8px;
}
.leaders__title {
  text-align: center;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .leaders__title {
    margin-bottom: 40px;
  }
}
.leaders__inner {
  display: block;
}
.leaders__tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 32px;
}
@media (max-width: 725px) {
  .leaders__tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .leaders__tabs::-webkit-scrollbar {
    display: none;
  }
}
.leaders__tab {
  position: relative;
  --tab-progress: 0%;
  border: none;
  background: transparent;
  border-radius: 0;
  padding: 14px 0 0;
  text-align: left;
  cursor: pointer;
  transition: opacity 0.2s ease;
  border-top: 4px solid #F9F9FB;
}
@media (max-width: 725px) {
  .leaders__tab {
    min-width: 300px;
    flex: 0 0 300px;
  }
}
.leaders__tab::before {
  position: absolute;
  content: "";
  top: -4px;
  left: 0;
  height: 4px;
  width: var(--tab-progress);
  background: #FF4600;
  transition: width 0.08s linear;
}
.leaders__tab:hover {
  opacity: 0.9;
}
.leaders__tab.is-active {
  border-top-color: #F9F9FB;
}
.leaders__tab_title {
  display: block;
  margin-bottom: 10px;
  color: #17171C;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.24px;
  color: #17171C;
}
@media (max-width: 768px) {
  .leaders__tab_title {
    font-size: 18px;
    line-height: 24px;
  }
}
.leaders__tab_description {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  max-width: 240px;
  display: block;
}
@media (max-width: 768px) {
  .leaders__tab_description {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    color: #666666;
  }
}
.leaders__content {
  position: relative;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
}
.leaders__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease;
}
.leaders__panel.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}
.leaders__panel.is-entering, .leaders__panel.is-leaving {
  position: absolute;
  inset: 0;
  visibility: visible;
  pointer-events: none;
}
.leaders__panel.is-entering {
  opacity: 0;
  z-index: 2;
}
.leaders__panel.is-leaving {
  opacity: 0;
  z-index: 1;
}
.leaders__panel_image {
  width: 100%;
  height: auto;
  max-height: 700px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
