.consult {
    main {
        .wrapper {
            display: flex;
            flex-direction: column-reverse;

            @media screen and (min-width: 700px) {
                flex-direction: row;
                gap: 50px;
            }

            .left, .right {
                width: 100%;
                @media screen and (min-width: 700px) {
                    width: 50%;
                }
            }

            .right {
                @media screen and (min-width: 700px) {
                    position: relative;
                    top: 50px;
                    margin-bottom: 50px;
                    padding: 20px;
                    background: var(--color-bg-surface);
                }
            }
        }
    }
}
