.home-image-text {
    position: relative;
    z-index: 1;
}

.home-image-text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0;
    bottom: -1px;
    background: var(--off-white);
    z-index: -1;
}

.home-image-text__wrapper {
    border-radius: 12px;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    box-shadow: 0 5px 30px 0 rgba(13, 27, 57, 0.10);
    overflow: hidden;
}

.home-image-text__image {
    height: 181px;
}

.home-image-text__text {
    padding: 15px 25px 25px;
}

.home-image-text__text h3 {
    font-size: 25px;
}

@media (min-width: 768px) {

    .home-image-text__image {
        height: 263px;
    }

    .home-image-text__text {
        padding: 32px 50px 50px;
    }

    .home-image-text__text h3 {
        font-size: 32px;
    }
}


@media (min-width: 1200px) {

    .home-image-text__wrapper {
        display: flex;
        flex-wrap: wrap;
        max-width: 1048px;
        margin: 0 auto;
    }

    .home-image-text__wrapper--right {
        flex-direction: row-reverse;
    }

    .home-image-text__image {
        height: auto;
        position: relative;
        width: 400px;
    }

    .home-image-text__image img {
        position: absolute;
        top: 0;
        left: 0;
    }

    .home-image-text__text {
        width: calc(100% - 400px);
        padding: 50px;
    }

    .home-image-text__text h3 {
        font-size: 36px;
    }
}