.section--investment {
    position: relative;
}

.section--investment:before {
    content: '';
    position: absolute;
    transform: skewX(-20deg);
    background: rgba(251, 202, 61, 1);
    top: 0;
    left: -10000px;
    bottom: -1px;
    right: 50%;
    z-index: 1;
}

.investment-content {
    padding-top: 180px;
    padding-bottom: 184px;
    width: 40%;
    max-width: 466px;
    position: relative;
    z-index: 2;
}

.investment-img {
    position: absolute;
    pointer-events: none;
    top: 0;
    right: 0;
    bottom: 0;
    width: 62%;
    overflow: hidden;
}

.investment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .section--investment {
        background: rgba(251, 202, 61, 1);
    }

    .section--investment:before {
        display: none;
    }

    .investment-img {
        position: static;
        width: calc(100% + 48px);
        margin-left: -24px;
        margin-right: -24px;
    }

    .investment-content {
        padding-top: 80px;
        padding-bottom: 32px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

}

@media (max-width: 767px) {
    .investment-content .btn {
        min-width: 140px;
    }
}