.contact {
	padding-bottom: 70px;
}

.contactForm {
	width: 100%;
}

.contactForm .erreur {
	color: red;
    font-size: 13px;
    margin-bottom: 15px;
}

.contactForm .notice {
    background-color: #000;
    color: white;
    padding: 10px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
}

.contactForm .field {
	margin-bottom: 15px;
}

.contactForm .field input {
	position: relative;
    width: 100%;
    padding: 15px 20px;
    font-family: inherit;
    font-size: 13px;
    line-height: 18px;
    font-weight: inherit;
    color: #929292;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    outline: 0;
    -webkit-appearance: none;
    box-sizing: border-box;
    height: 50px;
}

.contactForm .field textarea {
    position: relative;
    width: 100%;
    padding: 15px 20px;
    font-family: inherit;
    font-size: 13px;
    line-height: 18px;
    font-weight: inherit;
    color: #929292;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    outline: 0;
    resize: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    height: 200px;
}

.contactForm .btnSubmit {
	padding: 7px 46px;
    margin-top: 30px;
    cursor: pointer;
}

.contactForm .confirmation p {
	line-height: 25px;
}

.flex_boutique {
    margin-bottom: 70px;
}

.flex_boutique .flex_boutique_left {
    margin-bottom: 30px;
}

.flex_boutique .flex_boutique_left figure img {
    max-width: 100%;   
}

.flex_boutique .flex_boutique_texte {
    box-shadow: 0 3px 15px rgb(0 0 0 / 16%);
    padding: 20px; 
    margin-bottom: 10px;  
}

.flex_boutique .flex_boutique_texte h3 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 600;
    color: var(--color-2);  
}

.flex_boutique .flex_boutique_texte p:not(:last-of-type) {
    margin-bottom: 15px;
}

.flex_boutique .flex_boutique_texte .boutons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.flex_boutique .flex_boutique_texte .boutons .reseaux_sociaux {
    display: flex;
}

.flex_boutique .flex_boutique_texte .boutons .reseaux_sociaux figure {
    flex-basis: auto;
}

/* SI 3 PICTOS RESEAUX SOCIAUX */
.flex_boutique .flex_boutique_texte .boutons .reseaux_sociaux figure:nth-child(2) {
    margin: 0 15px;   
}

@media (min-width: 992px){
    .contactForm .ligne {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .contactForm .ligne .field {
        flex: 1;
    }

    .flex_boutique {
        display: flex;
        justify-content: space-between;
    }
    
    .flex_boutique .flex_boutique_left {
        display: flex;
        flex-basis: 45%;  
        margin-bottom: 0;
    }

    .flex_boutique.reverse .flex_boutique_left {
        order: 1;
    }

    .flex_boutique .flex_boutique_left figure img {
        height: 100%;
        object-fit: cover;
    }
    
    .flex_boutique .flex_boutique_right {
        flex-basis: 50%;   
    }
}