.step-process {
    padding: 4rem 0;
}

.step-process__card {
    border: 5px solid black;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 33%;
    border-radius: 5px;
    gap: 2rem;
}

.step-process__card .card__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 100%;
}

.card__content .card__content-title {
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card__content .card__content-title .title {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.card__content .card__content-title .title span {
    display: block;
    border-top: 2px solid #000;
    padding: 10px 10px;
    margin-top: 10px;
}

.step-process__card-container {
    display: flex;
    gap: 2rem;
}

.card__step-number {
    width: 100px;
    line-height: 100px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--color-grass);
    color: white;
    font-size: 44px;
    font-weight: bold;
}

.step-process__container.container>h2 {
    padding: 2rem;
    text-align: center;
}

@media screen and (max-width: 1400px) {
    .step-process .card__content-title {
        flex-direction: column;
    }

    .step-process .card__content-title .split-title__divider {
        height: 2px;
        width: 50%;
        margin: .75rem 0;
    }
}

@media screen and (max-width: 850px) {
    .step-process .step-process__card-container {
        flex-direction: column;
    }

    .step-process .step-process__card-container .step-process__card {
        width: 100%;
    }

    .step-process .card__content-title {
        flex-direction: row;
    }

    .step-process .card__content-title .title {
        max-width: calc(50% - 2rem);
    }

    .step-process .card__content-title .split-title__divider {
        width: 2px;
        height: 50px;
    }
}

@media screen and (max-width: 460px) {

    .step-process .card__content-title {
        flex-direction: column;
    }

    .step-process .card__content-title .title {
        max-width: calc(100% - 2rem);
    }

    .step-process .card__content-title .split-title__divider {
        width: 25%;
        height: 2px;
    }
}