.about-milk-machine {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    gap: 5em;
    background-color: var(--bg-section-1);
}

.about-milk-machine article ul {
    padding: 1em;
}

.about-milk-machine article img {
    height: 20em;
    width: auto;
    margin: 0 auto;
    border-radius: 1em;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}



.manual {
    display: flex;
    flex-direction: column;
    gap: 2em;
    text-align: center;
    background-color: var(--bg-section-2);
}

.manual .steps {
    display: flex;
    flex-direction: row;
    gap: 2em;
}

.manual .steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
    border-radius: 1em;
    padding: 2em;
    flex-grow: 1;
    width: 33%;
    background-color: white;
}

.manual .steps .step img {
    width: 5em;
    border-radius: 50%;
}

@media (max-width: 1250px) {
    .about-milk-machine, .steps {
        flex-wrap: wrap;
    }

    .steps {
        flex-direction: column;
    }
}

@media (max-width: 750px) {
    .step {
        min-width: 15em;
    }
}


	