body.page-id-47392 .elementor-element-77cb92c {
    display: none !important;
}
.jj-frise-title{
  text-align:center;
  color:#d38a76;
  font-family: "Ashemore Condensed Regular", Sans-serif !important;
  font-size:clamp(24px, calc(22.545px + 0.455vw), 28px);
  margin-bottom:50px;

}

.jj-frise{
  display:flex;
  justify-content:space-between;
  max-width:1400px;
  margin:0 auto;
  position:relative;
}

.jj-etape{
  text-align:center;
  flex:1;
  position:relative;
  /* padding:0 15px; */
}

/* ligne gauche du cercle */
.jj-etape::before{
  content:'';
  position:absolute;
  top:20px;
  left:0;
  width:50%;
  height:1px;
  background:#d9d9d9;
  z-index:0;
}

/* ligne droite du cercle */
.jj-etape::after{
  content:'';
  position:absolute;
  top:20px;
  right:0;
  width:50%;
  height:1px;
  background:#d9d9d9;
  z-index:0;
}

/* on coupe la ligne avant le 1er cercle et après le dernier */
.jj-etape:first-child::before{ display:none; }
.jj-etape:last-child::after{ display:none; }

.jj-etape-num{
  width:40px;
  height:40px;
  border-radius:50%;
  background:#d38a76;
  color:#fff;
  font-size:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 16px;
  position:relative;
  z-index:1;
}

.jj-etape h3{
   font-family: "Ashemore Condensed Regular", Sans-serif;
  font-weight:600 !important;
  font-size:clamp(18px,1.5vw,21px) !important;
  margin-bottom:8px;
  position:relative;
  z-index:1;
}

.jj-etape p{
  font-size:16px;
  color:#2b2a2a;
  line-height:1.6;
  position:relative;
  z-index:1;
}

/* TABLETTE : grille 2 colonnes x 2 lignes */
@media(max-width:1024px) and (min-width:481px){
  .jj-frise{
    display:grid;
    grid-template-columns:1fr 1fr;
    row-gap:40px;
    column-gap:20px;
  }
  .jj-etape::before,
  .jj-etape::after{
    display:none;
  }
}

/* MOBILE : une colonne */
@media(max-width:480px){
  .jj-frise{
    display:flex;
    flex-direction:column;
    gap:30px;
  }
  .jj-etape::before,
  .jj-etape::after{
    display:none;
  }
}