/*CSS Layout bloque caja ancho completo con logo, fondo color y 2 columnas*/
.bk-ffc-main{
    margin-bottom: 90px;
    padding: 88px 0 69px 0;
    position: relative;
}
.bk-ffc-main.adjust-small-content{
    margin-bottom: 60px;
    padding-top: 40px;
}
.bk-ffc-logo{
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30%;
    z-index: 2;
}
    .bk-ffc-logo svg{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
  .bk-ffc-wrapper{
    position: relative;
    overflow: visible;
    min-height: 534px;
    display: flex;
    align-items: center;
    padding-right: calc((100% - (var(--global-wrapper-width) - (var(--global-wrapper-horizontal-padding) * 2))) / 2);
    padding-top: 50px;
    padding-bottom: 50px;
  }
    .bk-ffc-body{
        width: calc((var(--global-wrapper-width) - (var(--global-wrapper-horizontal-padding) * 2)) * 0.6667);
        margin: 0 0 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
    }
      .bk-ffc-body-column{
        width: calc(50% - (80px / 2));
        display: flex;
        flex-direction: column;
      }
        .bk-ffc-body-title{
            margin: 0 0 10px 0;
        }
        .adjust-small-content .bk-ffc-body-title{
            margin-bottom: 18px;
        }
        .bk-ffc-body-link{
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            margin-top: 20px;
            align-items: flex-start;
        }
            .bk-ffc-body-link a{
                display: inline-flex;
                align-items: center;
            }
@media (max-width:1199px) {
.bk-ffc-main{
    margin-bottom: 70px;
    padding: 30px 0;
    overflow: hidden;
}
.bk-ffc-logo{
    top: -30px;
    bottom: 100px;
    left: -200px;
    width: 400px;
}
  .bk-ffc-wrapper{
    padding-right: var(--global-wrapper-horizontal-padding);
  }
    .bk-ffc-body{
        width: calc(100% - 250px);
    }
      .bk-ffc-body-column{
        width: calc(50% - 15px);
      }
}
@media (max-width:768px) {
.bk-ffc-main{
    margin-bottom: 70px;
    padding: 0 0 300px 0;
}
.bk-ffc-logo{
    top: unset;
    bottom: 320px;
    left: -310px;
    width: 550px;
}
  .bk-ffc-wrapper{
    padding-right: var(--global-wrapper-horizontal-padding);
    padding-left: var(--global-wrapper-horizontal-padding);
    padding-top: 40px;
    padding-bottom: 300px;
    min-height: auto;
  }
    .bk-ffc-body{
        width: 100%;
        flex-wrap: wrap;
    }
      .bk-ffc-body-column{
        display: block;
        width: 100%;
      }
      .bk-ffc-left{
        margin-bottom: 45px;
      }
        .bk-ffc-body-link{
            margin-top: 30px;
        }
}