.process {
    display: grid;
    align-content: center;
    justify-items: stretch;
    height: 100vh;
    padding: 2rem;
    gap: 2rem;
}

.process .categories {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 2.5px;
}

.process .categories .card {
    background-color: var(--white);
    padding: 1rem;
    display: grid;
    align-content: start;
    justify-items: start;
    flex: 1 1 0;
    height: 45vh;
    gap: 1rem;
}

@media (max-width: 480px) {
    .process {
        height: fit-content;
    }

    .process .categories {
        display: grid;
        align-content: center;
        justify-items: stretch;
        gap: 0.5rem;
    }

    .process .categories .card {
        width: 100%;
        flex: 1 1 0;
        height: 400px;
        display: grid;
        align-content: space-between;
        justify-items: stretch;
    }
}