@font-face {
  font-family: "Poppins";

  src: url("../font/Poppins/Poppins-Bold.ttf") format("truetype");

  font-weight: normal;

  font-style: normal;
}

@font-face {
  font-family: "Avenir";

  src: url("../font/Avenir.ttc") format("truetype");

  font-weight: normal;

  font-style: normal;
}

.title {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  align-items: center;
  text-align: center;
}
.title h1 {
  font-family: "Poppins", sans-serif;
  color: #002798;
}

.container {
  font-family: "Avenir";
  display: flex;
  height: 100%;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 90%;
  margin-top: 10px;
}
.info_head {
  display: flex;
  flex-direction: row;
}

.info_footer {
  display: flex;
  margin-top: 10px;
  flex-direction: column;
}
.loc,
.mail {
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  text-align: center;
}
.img_mail,
.img_loc {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.loc a {
}

/* utilisation */

.texte {
  font-family: "Poppins", sans-serif;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  height: 100%;
  display: block;
  flex-direction: row;
  width: 100%;

  justify-content: center;
  align-items: center;
}

.card {
  position: relative;

  width: 300px;

  height: 250px;

  background-color: #ffffff;

  border-radius: 10px;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

  perspective: 1000px;

  box-shadow: 0 0 0 5px #ffffff;

  transition: all 0.6s;
}

.info_head .img_card {
  height: 60px;
}

.switch input {
  display: none;
}

.head {
  display: flex;

  align-items: center;

  position: absolute;

  top: 0;
}

.card__content {
  margin-top: 0px;

  border-radius: 10px;

  position: absolute;

  width: 100%;

  height: 100%;

  padding: 20px;

  box-sizing: border-box;

  background-color: #ffffff;

  transform: rotateX(-90deg);

  transform-origin: bottom;

  transition: all 0.6s;

  align-items: center;

  display: flex; /* remtre flex ici */

  flex-direction: column;
  justify-content: center;
}

.switch input:checked + .card .card__content {
  transform: rotateX(0deg);
}

.card__title {
  font-family: "Poppins", sans-serif;

  margin: 0;

  margin-top: 5px;

  font-size: 24px;

  color: #000000;

  font-weight: 700;

  text-align: center;
}

.switch input:checked + svg {
  scale: 0;
}

.card__description {
  text-align: center;

  font-size: 20px;

  margin: 0;

  line-height: 1.4;

  font-family: "Avenir", sans-serif;

  font: size 20px;

  margin-top: 5px;

  color: rgb(0, 0, 0);
}

.card__content img {
  height: 100px;
  max-width: 200px;
}

.button {
  background-color: #ff7f00;

  color: #f2f2f2;

  padding: 5px;

  border-radius: 10px;

  font-size: 15px;

  font-family: "Avenir", sans-serif;
}

.carte {
  border-radius: 0px;

  justify-content: center;

  align-items: center;

  display: flex;

  position: relative;

  width: 300px;

  height: 250px;

  border: 10px solid #002798; /* la bordure principale */

  border-radius: 20px;
  margin: 10px;
}

.filtre label {
  color: #002798;
  border: 2px solid #002798;
  border-radius: 100px;
  margin: 10px;
  padding: 5px;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.filtre input {
  display: none;
}
.filtre input:checked + label {
  background-color: #002798;
  color: #f1f8ff;
}
.filtre {
  display: flex;
  flex-wrap: wrap;
}
