* {
  padding: 0;
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.hero {
  padding-top: 1rem;
  position: relative;
}
/* Bar de Navigation */
.navigation {
  padding-left: 10rem;
  padding-right: 10rem;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.navigation ul {
  display: flex;
  justify-content: space-around;
  list-style: none;
  align-items: center;
}
.navigation ul li {
  padding: 20px;
}
.navigation ul li a {
  text-decoration: none;
  color: rgb(0, 0, 0);
}
.logo {
  height: 70px;
  width: 70px;
}
.navigation ul button {
  padding: 5px 20px;
  border-radius: 5px;
  margin-left: 2rem;
  background-color: red;
  color: #fff;
  border-color: rgba(255, 0, 0, 0);
}
.navigation ul li a:hover {
  color: red;
}
.navigation ul button:hover {
  background-color: rgb(1, 1, 28);
  color: #fff;
  transition: 0.5s;
}

/* contact */

.contact {
  display: block;
  text-align: center;
  padding: 2rem;
  font-size: 2rem;
  font-weight: 700;
  background-color: #f4f4f4;
  color: red;
}
.contacter {
  padding: 2rem 10rem 2rem 10rem;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.contacter .gauche {
  width: 30%;
  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;
}

/* footer */

.pied {
  padding: 2rem 10rem 2rem 10rem;
  display: flex;
  justify-content: space-between;
  background-color: #01011c;
}
.pied div h1 {
  font-size: 30px;
  color: #ffffff;
}
.info ul li a,
li,
h3 {
  text-decoration: none;
  color: #ffffff;
}
.tag {
  border-top: 1px #ffff solid;
  padding: 20px;
  background-color: #01011c;
}
.tag p {
  text-align: center;
  color: #ffffff;
}
