.install-img {
    margin-top: 5px !important;
    height: 50px !important;
}

a {
    text-decoration: none !important;
}

.cursor-normal {
    cursor: default;
}
.wrapper {
    --circle-size: clamp(1.5rem, 5vw, 3rem);
    --spacing: clamp(0.25rem, 2vw, 0.5rem);
}

.wrapper .c-stepper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
    position: relative;
    list-style: none;
}

.wrapper .c-stepper__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    text-align: center;
}

.wrapper .c-stepper__icon {
    width: var(--circle-size);
    height: var(--circle-size);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #aaaeb1;
    margin-bottom: 1rem;
    color: white;
    font-size: clamp(1rem, 2vw, 1.0rem);
    position: relative;
    z-index: 2;
    border: none;
}

.wrapper .c-stepper__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: calc(var(--circle-size) / 2);
    left: 50%;
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    transform: translateY(-50%);
    z-index: 0;
}

.wrapper .c-stepper__item.completed .c-stepper__icon {
    background-color: #3AA7D9;
}

.wrapper .c-stepper__item.completed:not(:last-child)::after {
    background-color: #3AA7D9;
}

.wrapper .c-stepper__item.active .c-stepper__icon {
    background-color: #3AA7D9;
}

.wrapper .c-stepper__title {
    font-size: clamp(0.75rem, 3vw, 1.1rem);
    margin-bottom: 0.5rem;
}
