/*CSS Layout bloque financiación programas*/
.bk-fn-main{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 30px;
    position: relative;
}
    .bk-fn-content{
        width: 452px;
        padding-right: 36px;
    }
    .bk-fn-image{
        width: 416px;
        height: 615px;
        margin: 0;
    }
        .bk-fn-image img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    .bk-fn-brand{
        position: absolute;
        right: 0;
        top: 0;
        z-index: 2;
        height: 100%;
        width: 570px;
    }
@media (max-width:768px) {
.bk-fn-main{
    flex-wrap: wrap;
    padding-top: 0;
}
    .bk-fn-content{
        width: 100%;
        padding-right: var(--global-wrapper-horizontal-padding);
        margin-bottom: 130px;
    }
    .bk-fn-image{
        width: 100vw;
        margin-left: calc(var(--global-wrapper-horizontal-padding) * (-1));
        height: 337px;
    }
    .bk-fn-brand{
        right: 0;
        top: unset;
        bottom: 40px;
        z-index: 2;
        height: 418px;
        width: calc(80% + 30px);
    }
}
