.ct-proteccion_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 92%;
  max-width: 1118px;
  margin: 50px auto;
}
.ct-proteccion_content .title{
    font-size: clamp(16px, 4vw, 26px);
    color: #0b2739;
    font-weight: bold;
    text-align: center;
    font-family: var(--f4);
    max-width: 880px;
    line-height: normal;
}
.ct-proteccion {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  position: relative;
  overflow-x: auto;
  margin-top: 30px;
}
.ct-proteccion::before{
    content: url(/pages/empresas/soluciones-cloud/office-365/contenido/assets/line-proteccion.webp);
    width: 84%;
    color: var(--blue);
    position: absolute;
    top: 20px;
    z-index: -1;
    left: 76px;
    right: 0;
    margin: auto;
}
.ct-proteccion_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  line-height: normal;
  font-size: 18px;
  min-width: 220px;
}
@media (min-width: 768px) {
    .ct-proteccion::before{
        left: 0;
    }
}
