.order-form-row {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    justify-content: space-between;
}
.order-form-decoration-img {
    display: inline-flex;
    justify-content: flex-end;
}

.portfolio-main .order {
    background-image: none;
}

@media (max-width: 991px){
    .order-form-row {
        grid-template-columns: repeat(1,1fr);
    }
    .order-form-decoration-img img {
        max-width: 100%;
    }
}