.steps-alt {
    padding: 60px 0;
    background: var(--color-dark-green);
}

.steps-alt .title {
    color:  #FFF;
    font-family: var(--ff-LT);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.96px;
    margin-bottom: 0;
}

.steps-alt .steps {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.steps-alt .step {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

.steps-alt .steps> :first-child>.step {
    margin-top: 0;
}

.steps-alt .step .number {
    display: flex;
    width: 100px;
    min-width: 100px;
    aspect-ratio: 1/1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #9FC23E;

    color: var(--color-dark-green);
    font-family: var(--ff-LT);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.64px;
}

.steps-alt .step .title {
    color:  #FFF;
    font-family: var(--ff-RHD);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.4px;
    margin-bottom: 12px;
}

.steps-alt .step .description {
    color: #FFF;
    font-family: var(--ff-RHD);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.36px;
}

.steps-alt .step .description :last-child {
    margin-bottom: 0;
}

.steps-alt .step .description ul {
    padding-left: 25px;
    list-style-position: outside;
}

.steps-alt .step .description p,
.steps-alt .step .description li {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}

.steps-alt .step .description li {
    margin-bottom: 0;
}


@media screen and (max-width: 991.9px) {
    .steps-alt {
        padding: 32px 0;
    }

    .steps-alt .title {
        font-size: 32px;
        letter-spacing: -0.64px;
    }

    .steps-alt .step {
        align-items: flex-start;
    }

    .steps-alt .step .number {
        width: 80px;
        min-width: 80px;
        border-radius: 80px;
        font-size: 25.6px;
        letter-spacing: -0.512px;
    }
}