/**
* Style de notre block
*/
.recette {
    position: relative;
  }
  
  .recette.container {
    padding-top: 6.4375rem;
  }
  
  @media screen and (min-width: 1100px) {
    .recette.container {
      padding-top: unset;
      height: 564px;
    }
  }
  
  @media screen and (min-width: 500px) {
    .recette {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
    }
  }
  
  @media screen and (min-width: 1100px) {
    .recette {
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      gap: 6.5rem;
      margin: 0 auto;
    }
  }
  
  .recette__container-texte {
    max-width: 500px;
  }
  
  @media screen and (min-width: 500px) {
    .recette__container-texte {
      max-width: 524px;
      width: 50%;
    }
  }
  
  @media screen and (min-width: 1100px) {
    .recette__container-texte {
      margin-left: 5rem;
    }
  }
  
  @media screen and (min-width: 1520px) {
    .recette__container-texte {
      margin: 0;
    }
  }
  
  .recette__container-texte h2 {
    color: #171717;
    margin: 0 1.5rem;
    width: 184px;
  }
  
  @media screen and (min-width: 1100px) {
    .recette__container-texte h2 {
      width: 323px;
      margin: 0;
    }
  }
  
  .recette__container-texte p {
    color: #171717;
    margin: 1.5rem 1.5rem 0.5rem 1.5rem;
    text-align: justify;
  }
  
  @media screen and (min-width: 1100px) {
    .recette__container-texte p {
      margin: 1.5rem 0 0 0;
    }
  }
  
  .recette__container-image {
    position: relative;
  }
  
  @media screen and (min-width: 500px) {
    .recette__container-image {
      overflow: hidden;
      width: 50%;
      height: 100%;
    }
  }
  
  .recette__container-image img {
    width: 100%;
  }
  
  @media screen and (min-width: 500px) {
    .recette__container-image img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }
  
  .recette__container-image::before {
    content: '';
    top: 0;
    left: 0;
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 100% 100%, transparent 40%, white 70%);
  }
  
  .recette::before {
    content: url("../images/losange-background.svg");
    position: absolute;
    top: 17px;
    left: 0;
    z-index: -1;
  }
  
  @media screen and (min-width: 900px) {
    .recette::before {
      content: '';
      left: -36px;
      width: 306px;
      height: 306px;
      background-image: url(../images/losange-background_desktop_recette.svg);
      background-size: 100%;
      background-repeat: no-repeat;
    }
  }
  
  @media screen and (min-width: 1100px) {
    .recette::before {
      top: 48px;
      left: -106px;
      width: 517px;
      height: 517px;
    }
  }
  
  @media screen and (min-width: 1520px) {
    .recette::before {
      left: -191px;
    }
  }