/* BREAKPOINT */
/* bloc-formulaire-contact */
.contact-form--container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media screen and (min-width: 1025px) {
    .contact-form--container {
        flex-direction: row;
        gap: 64px;
    }
}

.gform_required_legend {
    display: none;
}

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

@media screen and (min-width: 1025px) {
    .contact-form--content {
        min-width: 430px;
        gap: 48px;
    }
}

.contact-form .select-wrapper {
    margin-bottom: 56px;
}

.contact-form .contact-form--form .contact-us-form,
.contact-form .contact-form--form .come-showroom-form {
    display: none;
}

.contact-form .contact-form--form .contact-us-form.actived,
.contact-form .contact-form--form .come-showroom-form.actived {
    display: flex;
}

.contact-form .show-legend {
    display: flex;
}

.contact-form .show-legend legend.gfield_label_before_complex {
    display: block;
    font-size: 1rem;
    font-family: var(--poppins);
    font-style: italic;
    font-weight: 400;
    line-height: 180%;
    cursor: pointer;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-form .show-legend .ginput_container_checkbox {
    width: 100%;
}

.contact-form .show-legend .gfield_checkbox {
    display: flex;
    align-items: center;
    gap: 56px;
}

.contact-form .show-legend .gfield_checkbox .gchoice {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-form .show-legend .gfield_checkbox .gchoice label {
    font-family: var(--silka);
    text-transform: none;
    font-weight: 500;
}

.contact-form .hiring-aside {
    flex-direction: column;
    gap: 24px;
}

@media screen and (min-width: 1025px) {
    .contact-form .hiring-aside {
        gap: 32px;
        padding-bottom: 80px;
    border-bottom: 1px solid var(--neutrals-grey-border, #D1CEC9);
    }
}

.contact-form .hiring-aside.mob {
    display: flex;
    padding-top: 48px;
    border-top: 1px solid var(--grey);
}

@media screen and (min-width: 1025px) {
    .contact-form .hiring-aside.mob {
        display: none;
    }
}

.contact-form .hiring-aside.desk {
    display: none;
}

@media screen and (min-width: 1025px) {
    .contact-form .hiring-aside.desk {
        display: flex;
        margin-top: auto;
    }
}

.contact-form .hiring-aside.desk h3 strong {
    font-weight: 500;
}

.contact-form .gform_footer {
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
}

@media screen and (min-width: 1025px) {
    .contact-form .gform_footer {
        justify-content: space-between;
        align-items: center;
        flex-direction: row-reverse;
    }
}

.contact-form .gform_footer p {
    color: var(--orange);
}

.contact-form--appointement {
    position: relative;
    margin-top: 64px;
}

@media screen and (min-width: 1025px) {
    .contact-form--appointement {
        display: flex;
        margin-top: 120px;
    }

    .contact-form--appointement>div {
        flex-basis: 33.33%;
    }
}

.contact-form--appointement-content {
    color: var(--white);
    background: var(--orange);
    padding: 40px 16px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media screen and (min-width: 1025px) {
    .contact-form--appointement-content {
        padding: 80px;
    }
}

.contact-form--appointement-img {
    height: 340px;
    position: relative;
}

@media screen and (min-width: 1025px) {
    .contact-form--appointement-img {
        height: auto;
    }
}

.contact-form--appointement img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.contact-form--appointement-aside {
    padding: 32px;
    background: var(--orange);
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.contact-form--appointement-aside.import {
    right: 0;
    bottom: 0;
}

@media screen and (min-width: 1025px) {
    .contact-form--appointement-aside {
        padding: 40px;
        gap: 12px;
        bottom: 0;
        right: 33.33%;
        transform: none;
    }
}

.contact-form--appointement-aside.stock {
    background: var(--black);
    color: var(--white);
    right: auto;
    left: 0;
    top: 0;
    bottom: auto;
}

@media screen and (min-width: 1025px) {
    .contact-form--appointement-aside.stock {
        left: 0;
        right: auto;
        bottom: 56px;
        top: auto;
    }
}

.contact-form--appointement-aside span {
    padding-left: 32px;
    font-family: var(--silka);
    font-size: 1.25rem;
    font-weight: 600;
}

@media screen and (min-width: 1025px) {
    .contact-form--appointement-aside span {
        font-size: 1.875rem;
    }
}

/* bloc-formulaire-contact */