.financiamento {
    display: grid;
    grid-template-columns: 40% 38%;
    column-gap: 2%;
    justify-content: center;
    padding: 100px 0;


}

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

.financiamento .right {
    order: 1;
}

.financiamento .left {
    order: 2;
}


.financiamento .title {
    font-family: 'm-bold';
    color: var(--cor-amarelo);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.btn_plantao {
    background-color: var(--cor-amarelo);
    border: 0;
}

.financiamento .subtitle {
    font-family: 'l-bold';
    font-size: 'm-regular';
    color: var(--cor-verde);
    font-size: 2rem;
    margin-bottom: 20px;
}

.financiamento .text {
    font-family: 'm-regular';
    margin-bottom: 10px;
    font-size: 1rem;

}

.financiamento .left {
    padding-right: 60px;
    padding-top: 50px;
    padding-bottom: 50px;
    color: #3F4C51;
}

.financiamento .left .item p {
    font-family: 'm-regular';
    color: var(--cor-verde);

}

.financiamento .left .item p:nth-child(1) {
    font-family: 'l-medium';
    font-size: 1.6rem;
}


.financiamento .left .item {
    margin-top: 20px;
    margin-left: 30%;
}

.financiamento .itens_financiamento {
    margin-top: 30px !important;
}

.financiamento .right .itens {
    display: flex;
}

.financiamento .itens img {
    max-height: 71px !important;
    object-fit: contain !important;
}

.financiamento .right .itens {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 813px) {

    .financiamento {
        display: grid;
        grid-template-columns: 80%;
        column-gap: 2%;
        justify-content: center;
        padding: 50px 0;
    }

    .financiamento .left {
        padding-right: 0px;
        padding-top: 0px;
        padding-bottom: 30px;
        color: #3F4C51;
        order: 1;
    }

    .financiamento .right {
        order: 2;
    }

    .financiamento .right .itens {
        display: flex;
        align-items: center;
        flex-direction: column;
        row-gap: 20px;
        margin-top: 10px;
    }

    .financiamento .right img {
        width: auto;
        height: auto;
        object-fit: cover;
    }

    .financiamento .img_1{
        width: 100% !important;
        height: auto;
    }

}