.stepper-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 0 5px;
    @media (max-width: 767px) {
      font-size: 12px;
    }
  }

 
  .stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: -50%;
    z-index: 2;
    
  }
  
  .stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 2;
  }
  
  .stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc;
    margin-bottom: 6px;
  }
  
  .stepper-item.active {
    font-weight: bold;
  }
  
  .stepper-item.completed .step-counter {
    background-color:#ADCAEA;
    color: white;
 
  }
  .stepper-item.active .step-counter{
    background-color: #114161;
    color: white;
    
  } 
 .stepper-item.completed .step-name{
    margin-top: 4px;
    color: #114161;
    font-weight: bold;
    font-size: 13px;
    text-align: center;
    @media (max-width: 480px) {
      font-size: 8px;
      margin-left: 2px;
      text-align: center;
    }

  }
  .stepper-item.active .step-name{
    color: #114161;
    font-weight: bold;
    font-size: 16px;
    margin-top: 0px;
    text-align: center;
     @media (max-width: 480px) {
      font-size: 9px;
      margin-left: 2px;
      text-align: center;
    }
    
  }
   .stepper-item .step-name{
    margin-top: 4px;
    color: black;
    font-size: 13px;
    text-align: center;
    line-height: 1.2;
    @media (max-width: 480px) {
      font-size: 7px;
      margin-left: 2px;
      text-align: center;
    }
  }

 
  
  

  .stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ADCAEA;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;
    color: white;
    opacity: 0.6; 
  }
  
  .stepper-item:first-child::before {
    content: none;
  }
  .stepper-item:last-child::after {
    content: none;
  }