.contact-form-wrapper{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
}
.contact-form-left{
    grid-area: 1 / 1 / 2 / 7;
}
.contact-form-right{
    justify-content: flex-end;
    grid-area: 1 / 8 / 2 / 13;
    flex-direction: column;
}
.contact-form-right img{
    border-radius: 20px;
}

@media (max-width: 860px) {
    .cfim-d{
        display: none;
    }
    .cfim-m-t{
        display: block;
    }
}

@media (min-width: 861px) {
    .cfim-d{
        display: block;
    }
    .cfim-m-t{
        display: none;
    }
}

@media (max-width: 1090px) {

    .contact-form-wrapper {
        display: flex;
        flex-direction: column;
    }
    .contact-form-left {
        width: 100%;
        padding-right: 0;
    }

    .contact-form-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: var(--spacing-l);
    }

    span.direct-phone-wrapper {
        font-weight: bold;
        font-size: 20px;
        line-height: 35px;
    }

    .contact-foram-team-label {
        padding: 12px 60px 12px 12px !important;
        background: #FFFFFF;
        width: 224px !important;
        background-repeat: no-repeat;
        background-position: top 8px right 8px !important;
        min-height: 65px !important;
        margin-top: -81px;
        display: flex;
        flex-direction: column;
        font-size: 17px !important;
        line-height: 20px !important;
        background-size: 29px !important;
    }

    .contact-form-right {
        justify-content: flex-end;
         width: 100%;
    }

}

