/* Sur Code Pen Version finalisée */
/* A VERIFIER */

/* Resets */

*, html, body, ::after, ::before{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
    font-family: 'Cinzel_Decorative';
    src: url('../fonts/Cinzel_Decorative/cinzeldecorative-regular-webfont.woff2') format('woff2'),
         url('../fonts/Cinzel_Decorative/cinzeldecorative-regular-webfont.woff') format('woff'),
         url('../fonts/Cinzel_Decorative/CinzelDecorative-Regular.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

/* Page Web */
body{
    margin: auto;
}

#body_produits{
  font-family: Roboto, Cambria, serif;
  font-weight: normal;
  color: #181818;
  /*margin: auto;*/
  text-align: left;
}

#body_produits p{
    padding: 20px;
}

hr{
   border: 3px solid #F1F1F1;
   margin: 50px;
}

/* Section Corps Produits */
#body_produits h1{
    font-family: "Cinzel_Decorative", Roboto, sans-serif;
    /*border: 1px solid #F1F1F1;*/
    margin: 30px;
    padding: 20px;
    font-size: 1.5em;
    color: white;
    text-shadow: 2px 2px 1px black;
    box-shadow: 2px 2px 3px black;
    width: 550px;
    border-radius: 10px;
}

#titre_site_carte_de_visite{
    background-color: rgb(231, 62, 1);
}

#titre_site_one_page{
    background-color: rgb(127, 221, 76);
}

#titre_site_vitrine{
    background-color: rgb(255, 228, 54);
}

#titre_site_sur_mesure{
    background-color: rgb(120, 50, 200);    
}

.p_images{
    margin: 20px;   
    text-align: center;
}

.p_images img{
    width: 600px;
}

#titre_site_web_evolutif{
    line-height: 60px;
    color: black;
}

#titre_site_web_evolutif::before{

  content: "→";
  display: block;
  width: 510px;
  height: 60px;
  line-height: 60px;
  border-radius: 4px;
  color: white;
  text-shadow: 2px 2px 2px black;
  text-indent: -50px;
  font-size: 1.3em;
  overflow: hidden;
  opacity: 1;
  background-color: salmon;
  position: absolute;
  z-index: -1;
  animation: 5s linear etapes;
}

h3{
   font-style: italic;
   
}

@keyframes etapes{
   from{
      width: 0px;
      padding-left: 30px;
      opacity: 0;
   } 
   to{
      width: 510px;
      padding-left: 470px;
      opacity: 1;
   }
}

#body_produits p, #zone_evolution_site_web{
    font-family: Roboto, Cambria, sans-serif;
    font-size: 0.9em;
}

h2{
   font-size: 1.1em;
   margin: 15px;
}

#zone_evolution_site_web{
    margin: 40px;
    text-align; center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: skyblue;
}

.en_tete_formule{
    padding: 10px;
    text-align: center;
    padding: 10px;
    color: #F1F1F1;
}

.nom_formule{
    text-align: center;
    font-size: 1.4em;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
}

.resume_formule{
   text-align: center;
   padding: 30px;
   font-size: 1.4em;
   font-style: italic;
}

.image_fleche{
   transition: all 1s ease;
}

.image_fleche:hover{
   transform: scale(1.2);
}

h3{
    text-decoration: underline;
    font-style: normal;
    font-weight: bold;
    font-size: 1.3em;
    text-indent: 10px;
}


@media all and (max-width: 1600px){
    #zone_evolution_site_web{
        margin: 40px;
        text-align; center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        background-color: skyblue;
    }
    
    .image_fleche{
        transition: all 1s ease;
    }
    
    .image_fleche:hover{
        transform: rotate(90deg);
    }
    
    .p_images img{
        width: 450px;
    }
    
    #body_produits h1{
      text-align: center;
      margin: auto;
   }
       
}


@media all and (max-width: 500px){
   #body_produits{
       font-size: 1.2em;
   }
   
   #body_produits h1{
      font-size: 0.9em;
      width: 300px;
      border: 3px solid black;
      text-align: center;
      margin: auto;
   }
   
   #titre_site_web_evolutif{
      background-color: salmon;
   }
   
   #titre_site_web_evolutif::before{
       display: none;
   }
   
   .p_images img{
       width:  250px;
    }
    
}