.image-and-form__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.image-and-form__image-wrapper {
    display: flex;
}
.image-and-form__image-wrapper img {
    width: 100%;
    max-height: 434px;
    height: calc(295px + (434 - 295) * ((100vw - 992px) / (1440 - 992)));
    object-fit: cover;
    border-radius: 12px;
}


@media screen and (max-width: 991.98px) {
    .image-and-form__image-wrapper img {
        height: calc(259px + (600 - 259) * ((100vw - 340px) / (991.98 - 340)));
        max-height: 400px;
    }

    .image-and-form__wrapper {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.5rem;
    }

    .image-and-form__image-wrapper {
        width: 100%;
    }
}