.contact {
    display: grid;
    padding-top: 112px;
    padding-bottom: 64px;
    position:relative;
    
    box-sizing:border-box;
    height: max(100%, 100vh);
    min-height: max(100%, 100vh);
}

.contact_content {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: start;
    font-weight: 600;
    height:100%;
    padding:30px;
    box-sizing:border-box;
}

.contact_scribble {
    width: 128px;
    padding-left: 25%;
}

.contact_txt {
    width: 40%;
    box-sizing: border-box;
}

.contact_txt h2 {
    font-size:20px;
    margin-top:20px;
    font-weight:normal;
    padding-right: 100px;
}

.contact_adresses {
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-top:20px;
}

.contact_adresses p {
    margin:0;
}

.contact_form {
    display: flex;
    flex-direction: column;
    width: 60%;
    height: 100%;
    background-color: var(--fake-grey);
    padding: 20px;
    border-radius: 10px;
    justify-content: space-between;
    box-sizing:border-box;
}

.input-div {
    display:flex;
    flex-direction:column;
    gap:20px;
}

.input-div textarea {
    height:160px;
}

.input-sujet-destinataire {
    display:flex;
    gap:15px;
}

.input-sujet-destinataire input {
    width: 100%;
}

.button-div {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.contact_form_input {
    border: none;
    border-radius: 10px;
    font-family: var(--font-family);
    font-weight: 600;padding: 10px;
    color:var(--fake-black);
}

.contact_form_input::placeholder {
    color:var(--plain-grey);
}

.contact_submit {
    background-color: var(--brand-primary);
    border: none;
    color: var(--fake-white);
    font-family: var(--font-family);
    border-radius: 5px;
    font-weight: 600;
    padding: 10px 20px;
    cursor:pointer;
}

.contact_form p {
    font-size: 16px;
}

@media only screen and (max-width: 1100px){
    .input-sujet-destinataire {
        flex-direction: column;
        gap: 20px;
    }

    .input-sujet-destinataire input {
        width: auto;
    }
}

@media only screen and (max-width: 950px) {
    .contact_content {
        flex-direction: column;
        gap: 64px;
    }

    .contact_txt {
        width:100%;
    }

    .contact_form {
        width:100%;
    }
}

@media only screen and (max-width: 700px) {
    .contact_txt h2{
        padding-right:0;
    }

    .contact_scribble {
        display:none;
    }
}