#contact_container{
    max-width: 1200px;
    width: 90%;
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 200px);
}




#contact_bandeau{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 600px;
    border-radius: 15px;
    box-shadow: 0 0 3rem #00010129;
}

.contact_bandeau_image{
    background-position: right;
    background-size: cover;
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    border-radius: 10px 0 0 10px;
}

#import_bandeau_image{
    background-image: url("../img/background_import.jpg");
}

#reprog_bandeau_image{
    background-image: url("../img/background_reprog.jpg");
}

#contact_bandeau_text{
    margin: 50px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

#contact_bandeau_text h1, #contact_bandeau_text h2{
    margin-bottom: 0;
}




#reprog_warning{
    background-color: var(--lightRed);
    padding: 0 15px;
    border-radius: 15px;
    margin-top: 50px;
    display: flex;
    width: calc(100% - 30px);
}

#reprog_warning svg{
    width: 150px;
    margin-right: 15px;
}




#contact_container iframe{
    width: 90%;
    height: 450px;
}



#form_container{
    width: 100%;
    max-width: 800px;
    margin-top: 20px;
}

.car_spec{
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(300px, 1fr) );
    row-gap: 10px;
    column-gap: 10px;
    margin-bottom: 10px;
}

.car_spec .contact_field_container{
    max-width: 400px;
}

.contact_field_container{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--accentColor);
    color: #FFF;
    border-radius: 10px;
    box-shadow: 0 0 3rem #00010129;
}

#contact_form label{
    width: 180px;
    margin: 5px 15px;
}

.contact_field{
    padding: 10px 15px;
    border: none;
    border-radius: 0 0 9px 9px;
    width: 100%;
    background-color: #FFF;
}

#message{
    height: 100px;
    resize: vertical;
}

#submit_container{
    width: 100%;
    display: flex;
    justify-content: end;
    margin-top: 10px;
}

.action_button{
    background-color: var(--accentColor);
    border: none;
    color: #FFF;
    box-shadow: 0 0 3rem #00010129;
    font-size: medium;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 10px;
}

.action_button:hover{
    cursor: pointer;
    background-color: var(--darkerAccentColor);
}

#submit_container button{
    margin-top: 10px;
}



#other_contact_container{
    width: 100%;
    max-width: 800px;
    margin-top: 20px;
}

#others_contact{
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.other_contact{
    display: flex;
    align-items: center;
    text-decoration: none;
}

.other_contact p {
    margin: 0;
}

.other_contact svg{
    width: 30px;
    margin-right: 10px;
    fill: #FFF;
}

.other_contact:hover svg{
    width: 30px;
    margin-right: 10px;
}