.development-container {
    width: 100%;
    gap: 2em;
}

.step-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 4em;
}

.step-container>img {
    width: 30%;
    filter: drop-shadow(0 0 0.5rem darkgrey);
    border-radius: 0.5rem;
}

.step-title {
    display: flex;
    flex-direction: column;
    max-width: 60%;
}

@media (max-width: 1100px) {
    .step-container>img {
        width: 60%;
    }

    .step-title {
        max-width: 80%;
    }
    .step-container {
         gap: 0rem;
         justify-content: center;
     }
}

@media (max-width: 600px) {
    .step-container>img {
        width: 100%;
    }

    .step-title {
        max-width: 100%;
    }
}