.produit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.produit article {
  background-color: #f6f5f7;
}
.produit article h4 {
  padding: 20px 40px;
}
.produit article section {
  padding: 0 40px;
  width: calc( 100% - ( 40px * 2 ) );
}
.produit .description {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.produit .description div {
  width: 49%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.produit .picture {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.produit .picture img {
  padding-bottom: 40px;
  width: 48%;
  height: 300px;
}
.produit .telechargement {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;

  background-color: #ecebed;
}
.produit .telechargement h5 {
  padding-bottom: 20px;
  width: 100%;
  font-size: 2rem;
}
.produit .telechargement div {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 30%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}



@media (width < 1200px) {
  

}