.spcustomhtml_bg {
  height: fit-content;
  padding: 50 0;
  width: 100%;
  overflow: hidden;
}
.title-module {
  text-align: center;
  font-size: 32px;
  line-height: normal;
}
.container-categorias-inicio {
  display: flex;
  justify-content: center;
  gap: 1%;
}
.content-box-categorias-inicio {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 250px;
  overflow: hidden;
}
.image-cat {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.image-cat:hover {
  transform: scale(1.1);
}
.categoria-inicio-item-texto {
  height: 70px;
}
.cat-title {
  line-height: 20px;
}
.item-categorias-inicio {
  width: 18%;
  background: white;
  aspect-ratio: 1 / 1;
}
.categoria-inicio-item-texto {
  text-align: center;
  font-weight: normal;
  font-size: 28px;
  position: absolute;
  top: 140px;
  color: white;
  width: 100%;
  cursor: pointer;
  text-shadow: 1px 0px 5px rgb(0 0 0);
  transition: all 0.2s;
}
.contenedor-categorias-inicio {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 15px;
  justify-content: center;
}
.image-cat-container {
  height: fit-content;
  width: fit-content;
  overflow: hidden;
	cursor: pointer;
}
.img-img-categorie {
  height: 300px;
  width: 540px;
  object-fit: cover;
  transition: all 0.2s;
}
.contenedor-categorias-inicio .item-categorias-inicio-prueba {
  flex: 0 0 calc(20% - 12px);
  box-sizing: border-box;
  background: white;
  padding: 20px 10px 0px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 0.2s ease;
  cursor: pointer;
}
@media (max-width: 992px) {
  .contenedor-categorias-inicio .item-categorias-inicio-prueba {
    flex: 0 0 calc(33.33% - 10px);
  }
}
@media (max-width: 768px) {
  .contenedor-categorias-inicio .item-categorias-inicio-prueba {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 480px) {
  .contenedor-categorias-inicio .item-categorias-inicio-prueba {
    flex: 0 0 100%;
  }
  .img-img-categorie {
    height: 225px;
  }
  .categoria-inicio-item-texto {
    top: 105px;
  }
}
