/* contact */

.contacter {
  padding: 6rem 4rem 2rem 4rem;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.contacter .gauche {
  width: 40%;
  min-height: 100%;
}
.gauche .adress,
.telephone,
.email {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.contacter .gauche .adress img {
  width: 30px;
}
.contacter .gauche .adress h3 {
  color: #01011c;
}
.contacter .gauche .adress h3,
p {
  text-align: center;
}
.contacter .gauche .telephone img {
  width: 30px;
}
.contacter .gauche .telephone h3 {
  color: #01011c;
}
.contacter .gauche .email img {
  width: 30px;
}
.contacter .gauche .email h3 {
  color: #01011c;
}
.contacter .droite {
  width: 70%;
  min-height: 100%;
}
.droite .message .text {
  text-align: left;
}
.contacter .droite .message {
  margin-bottom: 10px;
}
.droite .text_entrez {
  height: 50px;
  width: 100%;
  margin: 10px 0;
}
.droite .text_entrez input {
  width: 100%;
  height: 100%;
  background: #f4f4f4;
  border: none;
  border-radius: 5px;
  padding-left: 10px;
}
.droite .texte {
  width: 100%;
  height: 100px;
  margin-bottom: 20px;
}
.droite .texte textarea {
  width: 100%;
  height: 100%;
  background: #f4f4f4;
  border: none;
  border-radius: 5px;
  resize: none;
  padding-left: 10px;
  padding-top: 10px;
}
.droite .btn input {
  padding: 5px 20px;
  border-radius: 5px;
  background-color: red;
  color: #fff;
  border-color: rgba(255, 0, 0, 0);
}
.droite .btn input:hover {
  background-color: rgb(1, 1, 28);
  color: #fff;
  transition: 0.5s;
}
