.section-content .content-wrapper {
    display: flex;
    align-items: stretch;
    flex-direction: column;
}

.section-content .content-wrapper .text-content {
    background-color: #F1F3F9;
    padding: 3rem 15px;
}

.section-content .content-image {
    width: 100%;
}

.section-content .content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-content .text-content .editor-content p {
    color: #8A8D90 !important;
}

@media screen and (min-width: 576px) and (max-width: 767.98px) {
    .section-content .content-wrapper .text-content {
        padding-right: calc((100vw - 540px) / 2 + 15px);
        padding-left: calc((100vw - 540px) / 2 + 15px);
    }
}

@media screen and (min-width: 768px) and (max-width: 991.98px) {
    .section-content .content-wrapper .text-content {
        padding-right: calc((100vw - 720px) / 2 + 15px);
        padding-left: calc((100vw - 720px) / 2 + 15px);
    }
}

@media screen and (min-width: 992px) {
    .section-content .content-wrapper {
        flex-direction: row;
    }

    .section-content .content-wrapper .text-content {
        flex: 0 0 50%;
        max-width: 50%;
        padding-top: 5rem;
        padding-bottom: 5rem;
        padding-left: 3.25rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199.98px) {
    .section-content .content-wrapper .text-content {
        padding-right: calc((100vw - 960px) / 2 + 15px);
    }
}

@media screen and (min-width: 1200px) and (max-width: 1399.98px) {
    .section-content .content-wrapper .text-content {
        padding-right: calc((100vw - 1140px) / 2 + 15px);
    }
}

@media screen and (min-width: 1400px) {
    .section-content .content-wrapper .text-content {
        padding-right: calc((100vw - 1368px) / 2 + 15px);
    }
}

@media screen and (max-width: 768px) {
    .section-content .content-wrapper .text-content {
        text-align: center;
    }
}