.jbe-beneficios{
  width:100%;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  overflow:hidden;
  box-sizing:border-box;
  background:#eaf4ff;
}
.jbe-beneficio{
  position:relative;
  min-width:0;
  color:inherit;
  text-decoration:none;
  box-sizing:border-box;
}
.jbe-beneficio:not(:first-child)::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  width:2px;
  background:#d5e2ee;
}
.jbe-beneficio__inner{
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  box-sizing:border-box;
}
.jbe-beneficio__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  color:#0878c9;
  line-height:1;
}
.jbe-beneficio__icon i{line-height:1}
.jbe-beneficio__icon svg{display:block;fill:currentColor}
.jbe-beneficio__icon img{display:block;max-width:100%;max-height:100%;object-fit:contain}
.jbe-beneficio__text{
  width:100%;
  min-width:0;
  overflow-wrap:anywhere;
  word-break:normal;
  font-size:16px;
  line-height:1.45;
  color:#151515;
}
a.jbe-beneficio:hover,a.jbe-beneficio:focus{color:inherit;text-decoration:none}

@media (max-width:1024px){
  .jbe-beneficios{grid-template-columns:repeat(2,minmax(0,1fr));}
  .jbe-beneficio:nth-child(odd)::before{display:none;}
  .jbe-beneficio:nth-child(n+3){border-top:2px solid #d5e2ee;}
}
@media (max-width:767px){
  .jbe-beneficios{grid-template-columns:1fr;}
  .jbe-beneficio:not(:first-child)::before{display:none;}
  .jbe-beneficio:nth-child(n+2){border-top:2px solid #d5e2ee;}
  .jbe-beneficio__text{text-align:center;}
}
