/*CSS Layout bloque caja ancho completo imagen al 50%*/
.bk-fbi-main{
    margin-bottom: 90px;
}
  .bk-fbi-wrapper{
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 600px;
    max-height: 730px;
  }
    .bk-fbi-content{
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .bk-fbi-wrapper-align-left .bk-fbi-content{
        order: 2;
        padding-right: calc(var(--global-wrapper-horizontal-padding) + ((100% - var(--global-wrapper-width)) / 2));
        padding-left: 70px;
    }
    .bk-fbi-wrapper-align-right .bk-fbi-content{
        padding-left: calc(var(--global-wrapper-horizontal-padding) + ((100% - var(--global-wrapper-width)) / 2));
        padding-right: 70px;
    }
      .bk-fbi-content-head{
        margin-bottom: 15px;
      }
        .bk-fbi-content-head-title{
            margin: 0;
        }
    .bk-fbi-image-wrapper{
        width: 50%;
        position: relative;
    }
    .bk-fbi-wrapper-align-left .bk-fbi-image-wrapper{
        order: 1;    
    }
      .bk-fbi-image{
        width: 100%;
        height: 100%;
      }
          .bk-fbi-image img{
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
      .bk-fbi-secondary-image{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }
          .bk-fbi-secondary-image img{
            position: absolute;
            width: 180px;
            height: auto;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
          }
@media (max-width:1199px) {
  .bk-fbi-wrapper{
    min-height: auto;
    max-height: none;
    flex-wrap: wrap;
  }
    .bk-fbi-content{
        width: 100%;
        padding-top: 45px;
        padding-bottom: 45px;
    }
    .bk-fbi-wrapper-align-left .bk-fbi-content, .bk-fbi-wrapper-align-right .bk-fbi-content{
        order: 2;
        padding-left: var(--global-wrapper-horizontal-padding);
        padding-right: var(--global-wrapper-horizontal-padding);
    }
    .bk-fbi-image-wrapper{
        width: 100%;
    }
      .bk-fbi-image{
        height: 350px;
      }
    .bk-fbi-wrapper-align-left .bk-fbi-image-wrapper, .bk-fbi-wrapper-align-right .bk-fbi-image-wrapper{
        order: 1;    
    }
}
@media (max-width:768px) {
.bk-fbi-main{
    margin-bottom: 70px;
}
      .bk-fbi-image{
        height: 257px;
      }
}