.software {
    main {
        .wrapper {
            display: flex;
            flex-direction: column;

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

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

            .left {
                @media screen and (min-width: 700px) {
                    position: relative;
                    top: 50px;
                    margin-bottom: 50px;
                }
            }
        }
    }
}
