.title-slider-controllers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1em;
  margin-top: 15px;
  .title {
    font-size: 32px;
    font-weight: 500;
  }
  .slider-talent-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 38.4px;
    letter-spacing: 0.01em;
    text-align: left;
    background: linear-gradient(90deg, #81D9FF 8.55%, #1B9CFF 81.56%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

  }
  .slider-controllers {
    display: flex;
    gap: 4px;
    .slider-controller-item {
      display: flex;
      width: 37px;
      height: 37px;
      padding: 12px 12px 12px 14px;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border-radius: 40px;
      background: white;
      cursor: pointer;
    }
  }
}

@media screen and (max-width: 768px) {
  .title-slider-controllers {
    .title {
      font-size: 22px;
      font-style: normal;
      font-weight: 500;
      line-height: 120%; /* 15.6px */
      letter-spacing: 0.13px;
    }
    .slider-controllers {
      gap: 2px;
      .slider-controller-item {
        width: 19px;
        height: 19px;
      }
    }
  }
}
