/* FORM CONTACT */
main .contact {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding-top: 37px;
}

@media screen and (min-width: 1024px) {
    main .contact {
        flex-direction: row;
        gap: 108px;
        padding-top: 47px;
    }
}

main .contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media screen and (min-width: 1024px) {
    main .contact-form {
        gap: 48px;
    }
}

main .contact-form__header {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-bottom: 48px;
}

main .contact-form__header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    -webkit-mask: url("../images/list-faq-divider.svg");
    mask: url("../images/list-faq-divider.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background: var(--black);
    bottom: 0;
    left: -2px;
}

main .contact-form__header .title {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

main .contact-form__header .title .uptitle {
    display: flex;
    align-items: center;
    gap: 16px;
}

main .contact-form__header .title .uptitle img {
    width: 32px;
    height: 32px;
}

main .contact-form__header p {
    margin: 0;
}

main .contact-form__content .gform_heading {
    display: none;
}

main .contact-form__content form .spacer.gfield {
    display: none;
}

main .contact-form__content form .gchoice_other_control {
    display: none;
}

main .contact-form__content form .gform_body {
    padding-bottom: 24px;
}

@media screen and (min-width: 1024px) {
    main .contact-form__content form .gform_body {
        padding-bottom: 48px;
    }
}

main .contact-form__content .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 48px;
}

main .contact-form__content form .gform_body .gfield--type-select,
main .contact-form__content form .gform_body .gfield--type-text,
main .contact-form__content form .gform_body .gfield--type-email,
main .contact-form__content form .gform_body .gfield--type-phone,
main .contact-form__content form .gform_body .gfield--type-textarea {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

main .contact-form__content form .gform_body fieldset {
    padding: 0;
    border: none;
}

main .contact-form__content form .gform_body select,
main .contact-form__content form .gform_body input[type=text],
main .contact-form__content form .gform_body input[type=email],
main .contact-form__content form .gform_body input[type=tel],
main .contact-form__content form .gform_body textarea {
    width: 100%;
    padding: 20px 32px;
    min-height: 67px;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 150%;
    border: 1px solid var(--black);
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
}

main .contact-form__content form .gform_body select::-webkit-input-placeholder,
main .contact-form__content form .gform_body input[type=text]::-webkit-input-placeholder,
main .contact-form__content form .gform_body input[type=email]::-webkit-input-placeholder,
main .contact-form__content form .gform_body input[type=tel]::-webkit-input-placeholder,
main .contact-form__content form .gform_body textarea::-webkit-input-placeholder {
    color: #444;
    opacity: .8;
}

main .contact-form__content form .gform_body select::-moz-placeholder,
main .contact-form__content form .gform_body input[type=text]::-moz-placeholder,
main .contact-form__content form .gform_body input[type=email]::-moz-placeholder,
main .contact-form__content form .gform_body input[type=tel]::-moz-placeholder,
main .contact-form__content form .gform_body textarea::-moz-placeholder {
    color: #444;
}

main .contact-form__content form .gform_body select:-ms-input-placeholder,
main .contact-form__content form .gform_body input[type=text]:-ms-input-placeholder,
main .contact-form__content form .gform_body input[type=email]:-ms-input-placeholder,
main .contact-form__content form .gform_body input[type=tel]:-ms-input-placeholder,
main .contact-form__content form .gform_body textarea:-ms-input-placeholder {
    color: #444;
}

main .contact-form__content form .gform_body select::-ms-input-placeholder,
main .contact-form__content form .gform_body input[type=text]::-ms-input-placeholder,
main .contact-form__content form .gform_body input[type=email]::-ms-input-placeholder,
main .contact-form__content form .gform_body input[type=tel]::-ms-input-placeholder,
main .contact-form__content form .gform_body textarea::-ms-input-placeholder {
    color: #444;
}

main .contact-form__content form .gform_body select::placeholder,
main .contact-form__content form .gform_body input[type=text]::placeholder,
main .contact-form__content form .gform_body input[type=email]::placeholder,
main .contact-form__content form .gform_body input[type=tel]::placeholder,
main .contact-form__content form .gform_body textarea::placeholder {
    color: #444;
}

main .contact-form__content form .gform_body input:focus-visible {
    outline: none;
    box-shadow: none;
}

main .contact-form__content form .gform_body .ginput_container_select {
    position: relative;
    display: flex;
    align-items: center;
}

main .contact-form__content form .gform_body .ginput_container_select::after {
    position: absolute;
    pointer-events: none;
    content: "";
    width: 30px;
    height: 20px;
    -webkit-mask: url("../images/select-indicator.svg");
    mask: url("../images/select-indicator.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background: var(--black);
    right: 32px;
}

main .contact-form__content form .gform_body .ginput_container_select select {
    cursor: pointer;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--white);
    color: var(--black);
    background-image: none;
}

main .contact-form__content form .gform_body .ginput_container_select select::-ms-expand {
    display: none;
}

main .contact-form__content form .gform_body .ginput_container_select select:focus-visible {
    outline: none;
}

main .contact-form__content form .gform_body .gfield--type-consent .ginput_container_consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 12px;
}

main .contact-form__content form .gform_body .gfield--type-consent .ginput_container_consent input[type=checkbox] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid var(--black);
    flex-shrink: 0;
}

main .contact-form__content form .gform_body .gfield--type-consent .ginput_container_consent label {
    cursor: pointer;
}

main .contact-form__content form .gform_body .gfield--type-consent .gfield_consent_description {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}

main .contact-form__content form .gform_body .gfield--type-consent .gfield_consent_description a {
    color: var(--black);
    text-decoration: underline;
}

main .contact-form__content form .gform_body .gfield--type-radio legend {
    padding-bottom: 12px;
}

main .contact-form__content form .gform_body .gfield--type-radio .gfield_radio {
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 490px) {
    main .contact-form__content form .gform_body .gfield--type-radio .gfield_radio {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
}

main .contact-form__content form .gform_body .gfield--type-radio .gfield_radio .gchoice {
    display: flex;
    align-items: center;
    gap: 12px;
}

main .contact-form__content form .gform_body .gfield--type-radio .gfield_radio .gchoice .gfield-choice-input {
    width: 24px;
    height: 24px;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid var(--black);
    flex-shrink: 0;
}

main .contact-form__content form .gform_body .gfield--type-radio .gfield_radio .gchoice label {
    cursor: pointer;
    padding: 6px 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}

main .contact-form__content form .gform_body textarea {
    resize: none;
}

main .contact-form__content form .gform_body textarea:focus-visible {
    outline: none;
}

main .contact-form__content form .gform_body label,
main .contact-form__content form .gform_body legend {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

main .contact-form__content form .gform_body .gfield_consent_label {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 180%;
}

main .contact-form__content form .gform_body #field_1_1 {
    position: relative;
    padding-bottom: 48px;
}

main .contact-form__content form .gform_body #field_1_1::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    -webkit-mask: url("../images/list-faq-divider.svg");
    mask: url("../images/list-faq-divider.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background: var(--black);
    bottom: 0;
    left: -2px;
}

@media screen and (min-width: 1024px) {
    main .contact-form__content form .gform_body #field_1_1 {
        margin-bottom: 16px;
    }
}

@media screen and (min-width: 1024px) {
    main .contact-form__content form .gform_body #field_1_3 {
        padding-bottom: 16px;
    }
}

main .contact-form__content form .gform_body #field_1_14 {
    position: relative;
    padding-top: 24px;
    padding-bottom: 24px;
    margin-top: 24px;
}

main .contact-form__content form .gform_body #field_1_14::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    -webkit-mask: url("../images/list-faq-divider.svg");
    mask: url("../images/list-faq-divider.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background: var(--black);
    top: 0;
    left: -2px;
}

@media screen and (min-width: 1024px) {
    main .contact-form__content form .gform_body #field_1_14 {
        padding-top: 48px;
        padding-bottom: 16px;
        margin-top: 16px;
    }
}

main .contact-form__content form .gform_footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media screen and (min-width: 1024px) {
    main .contact-form__content form .gform_footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-top: 48px;
        padding-bottom: 120px;
        margin-top: 0;
    }
}

main .contact-form__content form .gform_footer::before {
    content: "*Champs obligatoires";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
}

main .contact-form__content form .gform_footer input[type=submit] {
    position: relative;
    padding: 18px 32px;
    text-align: center;
    font-family: var(--inter);
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    background: var(--green-light);
    border: none;
    border-radius: 40px;
    text-decoration: none;
    color: var(--green-dark);
    cursor: pointer;
}

main .contact-info {
    padding-bottom: 60px;
}

@media screen and (min-width: 1024px) {
    main .contact-info {
        min-width: 524px;
        padding-bottom: 0;
    }
}

main .contact-info-wrapper {
    position: relative;
    width: 100%;
    height: 640px;
    overflow: hidden;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

main .contact-info-wrapper::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}

main .contact-info-wrapper .contact-info__bg {
    width: 100%;
    height: 640px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center 62%;
    object-position: center 62%;
}

main .contact-info-wrapper .contact-info__content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: calc(100% - 48px);
    color: var(--white);
}

@media screen and (min-width: 1024px) {
    main .contact-info-wrapper .contact-info__content {
        width: calc(100% - 96px);
        bottom: 48px;
        left: 48px;
    }
}

main .contact-info-wrapper .contact-info__content .uptitle {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

main .contact-info-wrapper .contact-info__content .uptitle .uptitle-icon {
    display: flex;
    align-items: center;
    gap: 16px;
}

main .contact-info-wrapper .contact-info__content .uptitle h2 {
    font-size: 36px;
    font-style: normal;
}

@media screen and (min-width: 1024px) {
    main .contact-info-wrapper .contact-info__content .uptitle h2 {
        font-size: 40px;
    }
}

main .contact-info-wrapper .contact-info__content .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: var(--white);
    border: 1px solid var(--white);
    color: var(--black);
}

main .contact-info-wrapper .contact-info__content .btn span {
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
}

main .contact-info-wrapper .contact-info__content .btn span::before {
    content: unset;
}

main .contact-info-wrapper .contact-info__content .btn span::after {
    content: "";
    -webkit-mask: url("../images/simple-arrow.svg");
    mask: url("../images/simple-arrow.svg");
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background: var(--black);
    width: 12px;
    height: 11px;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
}

/* FORM CONTACT */