  .milestones_wrapper_vl {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: nowrap;
    text-align: center;
  }

  .milestone_box_vl {
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 2.5% 1%; 
    flex: 1;
  }

  .milestone_box_vl:last-child {
    display: none;
    padding: 5% 1%;
  }

  .milestone_number_vl {
    font-family: PT Sans;
    font-weight: 700;
    font-size: 38px;
    line-height: 34px;
    color: #e57100;
    opacity: 0;
    animation: fadein_milestones_vl 0.8s ease forwards;
    margin-bottom: 9px;
  }

  .milestone_label_vl {
    font-family: Ubuntu;
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    color: #000000;
  }

  @keyframes fadein_milestones_vl {
    to {
      opacity: 1;
    }
  }

  @media screen and (max-width: 1200px) {
    .milestone_box_vl:nth-child(3) {
      display: none;
    }
  }

  @media screen and (max-width: 500px) {
    .milestone_box_vl {
      display: none;
    }
    
    .milestone_box_vl:last-child {
      display: block;
    }
  }