section.block-form{
    border: none;
    padding: 3rem 0;
    overflow: hidden;
    background: var(--wp--preset--color--grey-light)
}
.inner-form{
    display: flex;
    justify-content: space-between;
    max-width: var(--wp--custom--layout--content-size);
    margin-left: auto;
    margin-right: auto;
}
.inner-form .column:nth-child(1){
    flex: 0 1 50%;
}
.inner-form .column:nth-child(2){
    flex: 0 1 41%;
}
.inner-form .form{
    position: relative;
}
.inner-form .form .wpcf7{
    position: relative;
    z-index: 1;
    padding: 2rem;
    border-radius: var(--standard-border-radius);
    background-color: var(--wp--preset--color--white);
    box-shadow: 0px 0px 10px 0px rgba(52, 64, 84, 0.10);
}
.inner-form .form .image-top{
    position: absolute;
    top: -2rem;
    left: -4rem;
    z-index: 0;
}
.inner-form .form .image-bottom{
    position: absolute;
    bottom: -3rem;
    right: -4rem;
    z-index: 0;
}
@media only screen and (max-width: 1230px) {
    .inner-form .form:not(.form-wiris){

    }
    .inner-form .column:nth-child(2){
        margin-top: 2rem;
    }
    .inner-form{
        display: block;
        padding: 0 1rem;
    }
}
