.form-contact--wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media screen and (min-width: 992px) {
    .form-contact--wrapper {
        flex-direction: row;
        gap: clamp(32px, 5.56vw, 80px);
    }
}

@media screen and (min-width: 992px) {
    .form-contact--img {
        flex: 1;
    }
}

.form-contact--img img {
    height: 280px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
}

@media screen and (min-width: 992px) {
    .form-contact--img img {
        height: clamp(280px, 37.5vw, 540px);
    }
}

@media screen and (min-width: 992px) {
    .form-contact--form {
        flex: 1;
    }
}

.form-contact--infos {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

@media screen and (min-width: 576px) {
    .form-contact--infos {
        gap: 32px;
        flex-direction: row;
    }
}

@media screen and (min-width: 768px) {
    .form-contact--infos {
        gap: clamp(16px, 5.56vw, 80px);
    }
}

.form-contact--infos>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

@media screen and (min-width: 576px) {
    .form-contact--infos>div {
        flex-direction: row;
        text-align: left;
    }
}

.form-contact--infos img {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    -o-object-fit: contain;
    object-fit: contain;
}

.form-contact--infos span {
    color: var(--parme);
    font-size: 0.875rem;
    font-style: italic;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.form-contact--infos a {
    display: block;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.form-contact .gfield--type-consent {
    border: 0;
}

.form-contact .gfield--type-consent .ginput_container_consent {
    position: relative;
}

.form-contact .gfield--type-consent input[type=checkbox] {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 24px;
    height: 24px;
    margin: 0;
    cursor: pointer;
    opacity: 0;
}

.form-contact .gfield--type-consent .gfield_consent_label {
    position: relative;
    display: block;
    min-height: 24px;
    padding-left: 36px;
    margin-bottom: 0;
    color: var(--prune);
    font-size: 14px;
    line-height: 150%;
    cursor: pointer;
}

.form-contact .gfield--type-consent .gfield_consent_label::before,
.form-contact .gfield--type-consent .gfield_consent_label::after {
    content: "";
    position: absolute;
    display: block;
}

.form-contact .gfield--type-consent .gfield_consent_label::before {
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 1px solid var(--prune);
    border-radius: 4px;
    background: transparent;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-contact .gfield--type-consent .gfield_consent_label::after {
    top: 4px;
    left: 9px;
    width: 7px;
    height: 13px;
    border: solid white;
    border-width: 0 2px 2px 0;
    opacity: 0;
    transform: rotate(45deg) scale(0.8);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.form-contact .gfield--type-consent input[type=checkbox]:checked + .gfield_consent_label::before {
    border-color: var(--prune);
    background: var(--prune);
}

.form-contact .gfield--type-consent input[type=checkbox]:checked + .gfield_consent_label::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

.form-contact .gfield--type-consent input[type=checkbox]:focus-visible + .gfield_consent_label::before {
    box-shadow: 0 0 0 3px rgba(237, 234, 151, 0.75);
}

.form-contact .gfield--type-consent .gfield_consent_label a {
    text-decoration-line: underline;
    text-decoration-style: solid;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

/*# sourceMappingURL=style.css.map */
