.container {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap-reverse;
  margin: 0;
  padding: 0;
  background-color: #AF3232;
}

/*...coordonnees...*/
.coordonnees {
  background-color: #AF3232;
  width: 50%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-self: stretch;
  text-align: center;
  min-width: 400px;
}

@media screen and (max-width:399px) {
  .coordonnees {
    width: 100%;
    min-width: min-content;
  }
}

.coordonnees span {
  color: #F5EBBE;
  margin-left: 20px;
  margin-right: 20px;
}

.coordonnees span.devis {
  margin-bottom: 50px;
  font-size: 35px;
}

.coordonnees span.horraire {
  margin-bottom: 50px;
  font-size: 20px;
  font-style: italic;
  margin-top: 60px;
  padding-left: 20px;
  padding-right: 20px;
}

h2 {
  color: #F5EBBE;
  font-weight: 300;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 2px;
  margin-bottom: 50px;
  padding-top: 120px;
}

h2 span {
  font-style: italic;
  font-weight: lighter;
  font-size: 30px;
}

/*....map.....*/
.map-contain {
  padding: 50px;
  width: 700px;
}

@media screen and (max-width:399px) {
  .map-contain {
    padding-right: 0;
    padding-left: 0;
    width: 320px;
  }
}

/*.....formulaire.....*/
.contain-form {
  width: 50%;
  background-color: #F5EED7;
  padding-top: 120px;
}

@media screen and (max-width:800px) {
  .contain-form {
    width: 100%;
  }
}

#formulaire {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 5px;
  background-color: #F5EED7;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 100px;
}

.contain-form p {
  text-align: center;
  margin: 0;
}

#donnees {
  background-color: #A0A384;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  width: 60%;
  height: 750px;
  justify-content: space-evenly;
}

@media screen and (max-width:1200px) {
  #donnees {
    width: 80%;
  }
}

h1 {
  color: #AF3232;
  width: 100%;
  font-size: 45px;
  font-family: great;
  word-spacing: 5px;
  padding: 0;
  text-align: center;
}



/*....corps formulaire...*/
input[type=text],
textarea,
input[type=email] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 6px;
  font-size: 20px;
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
  font-weight: lighter;
  color: #AF3232;

}

textarea {
  height: 150px;
}

p {
  width: 80%;
  margin: 0;
  padding: 20px;

}

@media screen and (max-width:399px) {
  p {
    width: 90%;
    padding-left: 0;
    padding-right: 0;
    min-width: min-content;
  }
}


/*....BOUTON.......*/
button {
  background-color: #F5EED7;
  border-color: #AF3232;
  width: 150px;
  height: 35px;
}

input[type=submit] {
  border-radius: 4px;
  cursor: pointer;
  background-color: transparent;
  font-size: 20px;
  font-family: 'Times New Roman', Times, serif;
}

input[type=submit]:hover {
  background-color: #d4e1ee;
}

/*.... capcha...*/
input#captcha {
  width: 50px;
  height: 30px;
  font-size: 20px;
  font-family: 'Times New Roman', Times, serif;
  font-weight: lighter;
  color: #af3232;
  text-align: center;
  border-radius: 4px;
}

div#donnees p label {
  font-size: 22px;
  font-family: 'Times New Roman', Times, serif;
  color: #fffef9;
  margin-right: 20px;
}

.no-spinner {
  -moz-appearance: textfield;
  /* Supprime les flèches sur Firefox */
  appearance: textfield;
  /* Supprime les flèches sur les navigateurs modernes */
}

.no-spinner::-webkit-inner-spin-button,
.no-spinner::-webkit-outer-spin-button {
  -webkit-appearance: none;
  /* Supprime les flèches sur Chrome, Safari, Edge */
  margin: 0;
  /* Évite les marges supplémentaires */
}