.prodContent{
  width: 90%;
  margin-left: 5%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 5%;
}

.prodTitle{
  padding-top: 120px; 
  font-size: 35px;
  color: #e2001b;
  flex-basis: 100%;
  padding-bottom: 70px;
}

.productMenu{
  margin-left: 150px;
  flex-basis: 25%;
  display: flex;
  font-size: 20px;
  align-self: center;
}

.prodList, .format{
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-left: 5px;
}


.prodList li:before{
  content: '> ';
}

.prodList .first{
  color: #009790;
}

.prodInfos{
  display: flex;
  flex-direction: column;
  height: 600px;
  justify-content: space-around;
  flex-basis: 55%;
}


.imgProd{
  width: auto;
  height: 300px;
  border: 1px solid black;
  margin-top: 5%;
}

.details{
  text-align: justify;
}

.menuTitle{
  margin-left: 10px;
}

.formatList{
  display: flex;
}

.format li:before{
  content: '- ';
}

@media screen and (max-width: 1024px){

  .prodContent{
    &nbsp;width: 100%;
  }

  
  .productMenu{
    margin-left: 50px;
  }
}

@media screen and (max-width: 680px){
  
  .prodInfos{
    flex-basis: 90%;
    padding-bottom: 50px;
  }

  .productMenu{
    margin: 0;
    flex-basis: 50%;
  }
}


