.scrollIndexContain{
    position: absolute;
    height: calc(100% - 150px);
    z-index: 1;
    margin-left: 30px;
  
  }
  
  .stickyIndex{
    position: sticky;
    top: 15vh;
    width: fit-content;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .lineIndex{
    position: absolute;
    width: 2px;
    height: 100%;
    background: #00b9b0;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
  
  .indexDots{
    position: absolute;
    width: 20px;
    height: 100%;
    top: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  
  .dotIndex{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00b9b0;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
  } 
  
  .dotIndex:hover{
    width: 20px;
    height: 20px;
  }
  
  .dotIndex.active{
    width: 20px;
    height: 20px;
  }
  .dotIndex::before{
    content: '';
    position: absolute;
    width: 0px;
    height: 0px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    top: 50%;
    left: 50%;
    transition: 0.5s;
  }
  
  .dotIndex.active::before{
    width: 10px;
    height: 10px;
  }
  
  .dotText{
    position: absolute;
    font-size: 1.2rem;
    font-weight: 500;
    transition: 0.5s;
    opacity: 1;
    color: rgba(15, 14, 15, 0.788);
    top: 50%;
    transform: translate(0, -50%);
    left: 22px;
    opacity: 0;
  }

  .stickyIndex:hover .indexDots .dotIndex .dotText{
    opacity: 0.5;
  }

  .dotIndex.active .dotText{
    opacity: 1;
    transition-delay: 0.3s;
  }
  
  
  .dotIndex:hover .dotText, .stickyIndex:hover .indexDots .dotIndex:hover .dotText{
    opacity: 0.7;
    transition: 0.25s;
  }
  .dotIndex.active:hover .dotText{
    opacity: 1;
    transition-delay: 0.3s;
  }

  .active .scrollIndexContain{
    opacity: 1;

  }

  .teamScroll{
    overflow: visible;
    overflow-x: clip;
    overflow-y: visible;
    overflow-y: clip;
  }