.half-text-form__content h2 {
    font-size: 32px;
    margin: 0 0 25px;
}

.half-text-form__image {
    height: 262px;
    border-radius: 25px;
    overflow: hidden;
    margin: 40px 0 0;
}

.half-text-form__content p {
    font-size: 16px;
}

.half-text-form__flex {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.half-text-contact-form {
    padding: 32px;
    border-radius: 25px;
    background: var(--light-blue);
}

.bg-light-blue .half-text-contact-form {
    background: var(--white);
}

.half-text-contact-form__heading {
    margin: 0 0 30px;
}

.half-text-form__area+.half-text-form__content .half-text-form__image {
    height: 200px;
}

@media(min-width: 768px) {
    .half-text-form__image {
        height: 379px;
    }

    .half-text-form__flex {
        gap: 68px;
    }

    .half-text-contact-form {
        padding: 50px;
    }

    .half-text-form__area+.half-text-form__content .half-text-form__image {
        height: 268px;
    }

    .half-text-contact-form .row {
        --bs-gutter-x: 20px;
    }
}

@media(min-width: 1200px) {
    .half-text-form__flex {
        flex-direction: row;
        gap: 68px;
    }

    .half-text-form__flex.flex-direction-left {
        flex-direction: row-reverse;
    }

    .half-text-form__content {
        width: 40%;
        padding: 32px 0 0;

        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .half-text-form__area {
        width: calc(60% - 68px);
    }

    .half-text-form__image {
        height: 100%;
    }

    .half-text-form__content h2 {
        font-size: 45px;
    }

    .half-text-form__area+.half-text-form__content .half-text-form__image {
        height: 220px;
    }


    .half-text-form__area+.half-text-form__content p {
        margin-bottom: 15px;
    }

    .half-text-contact-form__heading h2 {
        margin: 0 0 30px;
    }

    .half-text-form__flex.align-items-center {
        align-items: center;
    }
}