/** CONTACT */

.contact .coordonnees {
    display: flex;
    justify-content: center;
    margin-bottom: 70px;
    flex-direction: column;
}

.contact .coordonnee {
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.16);
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.contact .coordonnee p:first-child {
    margin-bottom: 20px;
}

.contact .coordonnee p:last-child {
    margin-bottom: 0;
}

.contact .coordonnee p i {
    font-size: 30px;
    background-color: #e41b12;
    color: white;
    padding: 15px;
    border-radius: 50%;
}

.contact .coordonnee p a {
    font-size: 16px;
    font-weight: 600;
}

p.claim  {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
}

.confirmation {
    text-align: center;
    font-weight: 600;
    margin-bottom: 3em;
}

.erreur {
    background-color: red;
    color: white;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3em;
    line-height: 2.5;
    border-radius: 4px;
}

.field {
    display: block;
    position: relative;
    margin-bottom: 3em;
}

.hidden {
    display: none;
}

.field span {
    position: absolute;
    top: 20px;
    font-size: 14px;
    color: #727577;
    transition: all .2s ease;
    transform-origin: 0 0;
    cursor: text;
}

.field span.border {
    display: block;
    position: absolute;
    top: 42px;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transition: all .15s ease;
    background: #1B2E64;
}

.form-control {
    display: block;
    width: 100%;
    height: 43px;
    border: none;
    border-bottom: 1px solid #7D8083;
    border-radius: 0;
    background: none;
    font-family: hero-new, sans-serif;
    font-weight: 300;
    font-size: 15px;
    outline: none;
}

.form-control:focus, .form-control:valid {
    border-bottom: 1px solid #1B2E64;
}

.form-control:focus + span, .form-control:not(:placeholder-shown) + span {
    transform: translateY(-40px) scale(0.9);
    color: #1B2E64;
}

.form-control:focus + span + .border, .form-control:valid + span + .border {
    transform: scaleX(1);
}

textarea.form-control {
    padding-top: 10px;
    padding-bottom: 10px;
    resize: none;
}

.page_contact .boutons .btn {
    border: 0;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

@media (min-width: 768px){
    .contact .coordonnees {
        flex-direction: row;
    } 

    .contact .coordonnee {
        flex-basis: 45%;
        margin: 0 15px 0 15px;
    }

    .contactForm .ligne {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .contactForm .field {
        flex-basis: 47%;
    }

    .page_contact .boutons {
        justify-content: center;
    }
}

@media (min-width: 1200px){
    .contact .coordonnee p a {
        font-size: 20px;
    }
}

@media (min-width: 1440px){
    .contact .coordonnee p a {
        font-size: 24px;
    }
}