.financing {
    padding-bottom: 68px;
}

.financing-wrp {
    position: relative;
    padding: 85px 0 90px 0;
}

.financing-wrp h2 {
    text-align: center;
}

.financing-wrp::before,
.financing-wrp::after {
    content: '';
    position: absolute;
    width: 94%;
    height: 100%;
    left: 38px;
    top: 0;
}

.financing-wrp::before {
    background: url('../../../library/images/ser-before-bg2.svg') center / contain no-repeat;
    z-index: 0;
}

.financing-wrp::after {
    border-radius: 50px;
    border: 1px solid var(--white);
    background: var(--blue);
    z-index: -1;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25), 0 4px 4px 0 rgba(0, 0, 0, 0.25) inset;
}

.financing .btn-red {
    border: 2px solid var(--white);
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.18);

}

.fi-benefits {
    padding-bottom: 65px;
}

.fin-benefits-wrp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 23px;
    column-gap: 29px;
    margin: 46px 0 58px 0;
}

.fin-benefits-wrp .benefit {
    height: 100%;
    border-radius: 15px;
    border: 2px solid #AFAFAF;
    background: var(--white);
    min-height: 284px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 46px 42px;
}

.fin-benefits-wrp .benefit h3 {
    font-size: 28px;
    line-height: 28px;
    background: linear-gradient(180deg, #0F2240 0%, #0F1113 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
}

.fin-benefits-wrp .benefit p {
    margin: 11px 0 0 0;
    color: var(--black);
}

@media(max-width:992px) {
    .fin-benefits-wrp {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px
    }

    .financing-wrp::before,
    .financing-wrp::after {
        width: 90%;
        left: 5%;
    }

    .financing-wrp::before {
        background: url('../../../library/images/ser-before-bg-mobo.svg') top / cover no-repeat;
    }

    .financing-wrp::after {
        background: var(--black);
    }

    .financing-wrp {
        padding: 147px 0 141px 0;
    }

    .financing-wrp h2 {
        max-width: 300px;
        margin: 0 auto;
    }
}