.two-columns-text-component .columns-fix {
    position: relative;
    width: 100%;
}

.two-columns-text-component {
    padding-left: 0;
    padding-right: 0;
    display: flex;
}

.two-columns-text-component .text-block {
    padding: 30px;
    width: 100%;
    z-index: 2;
    position: relative;
}

.two-columns-text-component .full-width {
    position: absolute;
    top: 0;
    width: 50vw;
    height: 100%;
    z-index: 0;
    background-color: inherit;
}

.two-columns-text-component .full-width-right {
    left: 0;
}

.two-columns-text-component .full-width-left {
    right: 0;
}

@media (max-width: 600px) {
    .two-columns-text-component {
        display: unset;
    }

    .two-columns-text-component .text-block p {
        text-align: left !important;
    }

    .two-columns-text-component .full-width-right {
        left: -10px;
        width: calc(100vw + 10px);
    }

    .two-columns-text-component .full-width-left {
        right: -10px;
        width: calc(100vw + 10px);
    }
}