.funders {
    z-index: 100;
    background-color: #23232c;
    overflow: hidden;
    padding: 0 30px;
  }
  .funders-h1 {
    font-size: 65px;
    color: #fff;
    padding: 35px;
    text-align: left;
  }
  .wrapper {
    position: relative;
    left: -25%;
    transform: translateY(-50%);
  }

  .total-title {
    box-sizing: border-box;
    padding: 4px;
    width: 220px;
    height: 55px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    margin-left: 40px;
  }
  .title-head {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
    padding-bottom: 20px;
  }
  .total-title span {
    color: #a8a8a8;
  }

  .chart-container {
    display: flex;
    gap: 20px;
    text-align: center;
    color: #a8a8a8;
    justify-content: flex-end;
    align-items: flex-end;
    margin-right: 50px;
    height: 250px;
  }

.bar-0 {
    width: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 20px;
  }

.bar-0 div {
    width: 100%;
    transition: height 1.5s ease-out;
    height: 0;
  }

  .label {
    margin-top: 5px;
    font-size: 14px;
    color: #aaa;
  }

  .bar-1 div {
    background-color: #32a852;
  }
  .bar-2 div {
    background-color: #8a30b5;
  }
  .bar-3 div {
    background-color: #e8594b;
  }
  .bar-4 div {
    background-color: #ff9800;
  }
  .bar-5 div {
    background-color: #39d0b8;
  }
  .bar-6 div {
    background-color: #f06292;
  }
  .bar-7 div {
    background-color: #536dfe;
  }
  .icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-bottom: 10px;
  }

  /* Each bar and icon color */
  .bar-1 .icon {
    background-image: url(../images/icons/bar-1.png);
  }
  .bar-2 .icon {
    background-image: url(../images/icons/bar-2.png);
  }
  .bar-3 .icon {
    background-image: url(../images/icons/bar-3.png);
  }
  .bar-4 .icon {
    background-image: url(../images/icons/bar-4.png);
  }
  .bar-5 .icon {
    background-image: url(../images/icons/bar-5.svg);
  }
  .bar-6 .icon {
    background-image: url(../images/icons/bar-6.png);
  }
  .bar-7 .icon {
    background-image: url(../images/icons/bar-7.png);
  }

  .lines-chart-container {
    margin: 100px 45px;
    position: relative;
    background: linear-gradient(180deg, #595959, #23232c);
    padding: 50px 30px;
    border-radius: 15px;
  }

  .lines-chart-title {
    font-size: 45px;
    font-weight: bold;
    color: #fff;
    box-sizing: border-box;
    width: 570px;
    height: 70px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    text-align: center;
  }

  .chart-subtitle {
    font-size: 22px;
    color: #aaa;
    margin: 10px;
    width: 380px;
  }

  /* Styles for left column (Funders list) */
  .chart-funders {
    border-right-style: dashed;
    text-align: right;
    padding-right: 10px;
    border-right-color: #363636;
    border-right-width: 2px;
    width: 160px;
  }

  .chart-funder-item {
    height: 35px;
    font-size: 14px;
    color: #515151;
    font-weight: 600;
    align-items: center;
    display: grid;
    justify-content: end;
  }

  /* Lines and sectors */
  .chart-sectors {
    display: flex;
    flex-direction: column;
    flex: auto;
    padding-top: 30px;
  }

  .chart-sector-label {
    font-size: 22px;
    margin: 35px 0;
    display: inline-block;
    font-weight: 500;
  }

  /* Clearfix for floats */
  .chart-clearfix::after {
    content: '';
    clear: both;
    display: table;
  }

  .chart-area {
    display: flex;
    flex-direction: row;
    position: relative;
  }

  .chart-lines {
    opacity: 0.3; /* Default inactive state */
    transition: opacity 0.3s ease;
    width: 555px;
  }
  .chart-line.active {
    opacity: 1; /* Active state */
  }

  .chart-funder-item::after {
    content: ' ';
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    margin-top: 3px;
    position: absolute;
    left: 178px;
    z-index: 10;
  }
  .letters {
    width: 95%;
    height: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
    margin-top: 33px;
    margin-left: 40px;
    cursor: pointer;
  }
  .letter {
    flex: 1;
    text-align: center;
    font-size: 14px;
    color: #44444e;
  }
  .letter.active {
    font-weight: bold;
    color: #fff;
  }
  .active {
    color: #fff;
  }

  .line-active {
    opacity: 1; /* Full opacity for active lines */
  }

  .line-inactive {
    opacity: 0.3; /* Lower opacity for inactive lines */
  }
  /* Right side content containing circles */
  .right-content {
    display: flex;
    opacity: 0;
    transform: translateX(100px); /* Move slightly to the right initially */
    transition: opacity 0.6s ease, transform 0.6s ease; /* Transition settings */
  }

  .right-content.in-view {
    opacity: 1;
    transform: translateX(0); /* Slide into place */
  }

  .progress-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 800px;
    background-color: #23232c;
    overflow: hidden;
  }

  .diagram-container {
    display: flex;
    width: 100%;
    margin: 0 auto;
    position: relative;
  }

  .left-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 20%;
    gap: 40px; /* Adjust spacing between points as needed */
  }

  .right-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    width: 70%;
    gap: 40px; /* Adjust spacing between text items as needed */
  }

  .point {
    width: 20px;
    height: 20px;
    background-color: #333;
    border-radius: 50%;
    position: relative;
  }

  /* Connecting line */
  .point::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: calc(100vw - 200px); /* Adjust the length to reach text */
    height: 2px;
    background-color: rgba(0, 0, 0, 0.3);
    transform: translateY(-50%);
  }
  .left-label {
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
  }
  .right-label {
    font-size: 22px;
    font-weight: 500;
  }
