.single-fabricante-container {
  min-height: auto;
  height: auto;
}
.single-fabricante-container .contenedor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 122px;
}
@media (max-width: 758px) {
  .single-fabricante-container .contenedor {
    flex-direction: column;
    gap: 21px;
  }
}
.single-fabricante-container .contenedor .izquierda .imagen {
  background-color: #FFF;
  padding: 11.46px 22.36px;
  border-radius: 20px;
  width: 389px;
  height: 204px;
}
@media (max-width: 758px) {
  .single-fabricante-container .contenedor .izquierda .imagen {
    width: 100%;
  }
}
.single-fabricante-container .contenedor .izquierda .imagen img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-fabricante-container .contenedor .derecha {
  max-width: 491px;
}
.single-fabricante-container .contenedor .derecha .marca {
  color: #1F9AD7;
  font-family: "Exo", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 1.8px;
  margin-bottom: 14px;
}
.single-fabricante-container .contenedor .derecha h1 {
  color: #14243E;
  font-family: "Exo", sans-serif;
  font-size: 48px;
  font-style: italic;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 16px;
}
.single-fabricante-container .contenedor .derecha .descripcion p {
  color: #6678A1;
  font-family: "Exo", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
}

.section-soluciones {
  min-height: auto;
  height: auto;
}
.section-soluciones .contenedor h2 {
  font-size: 25px;
  font-family: "Exo", sans-serif;
  font-style: italic;
  font-weight: 900;
  color: #1F9AD7;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
@media (max-width: 780px) {
  .section-soluciones .contenedor h2 {
    text-align: center;
  }
}
.section-soluciones .contenedor .list-soluciones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (max-width: 780px) {
  .section-soluciones .contenedor .list-soluciones {
    grid-template-columns: 1fr;
  }
}
.section-soluciones .contenedor .list-soluciones .categoria {
  min-height: 11rem;
  aspect-ratio: 16/8;
  width: 100%;
  background-image: var(--bg-cat-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}
@media (max-width: 780px) {
  .section-soluciones .contenedor .list-soluciones .categoria {
    aspect-ratio: 16/9;
  }
}
.section-soluciones .contenedor .list-soluciones .categoria::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.3;
  z-index: 1;
}
.section-soluciones .contenedor .list-soluciones .categoria .contenido {
  position: relative;
  z-index: 2;
  width: 12rem;
  max-width: 100%;
}
.section-soluciones .contenedor .list-soluciones .categoria .contenido h3 {
  color: #ffffff;
  font-family: "Exo", sans-serif;
  font-style: italic;
  font-weight: bold;
  font-size: 1.563rem;
  text-align: center;
}
.section-soluciones .contenedor .list-soluciones .categoria .contenido span {
  padding: 0.5rem 1rem;
  border-radius: 3rem;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: normal;
  background: linear-gradient(85deg, #1f9ad7 37.44%, #2ba9ee 90.96%);
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.section-soluciones .contenedor .list-soluciones .categoria .contenido span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(85deg, #1f9ad7 37.44%, #2ba9ee 90.96%);
  border-radius: 3rem;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}
.section-soluciones .contenedor .list-soluciones .categoria .contenido span span {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: normal;
  position: relative;
  transition: all 0.3s ease;
  z-index: 2;
}
.section-soluciones .contenedor .list-soluciones .categoria .contenido span span::before {
  font-weight: normal;
  content: attr(data-title);
  position: absolute;
  font-size: 1.125rem;
  width: -moz-max-content;
  width: max-content;
  line-height: 1.2;
  opacity: 0;
  transition: all 0.3s ease;
}
.section-soluciones .contenedor .list-soluciones .categoria .contenido span svg {
  height: 1rem;
  width: 2rem;
  z-index: 2;
}
.section-soluciones .contenedor .list-soluciones .categoria .contenido span svg path {
  fill: #ffffff;
  transition: all 0.3s ease;
}
@media (max-width: 780px) {
  .section-soluciones .contenedor .list-soluciones .categoria .contenido span {
    font-size: 0.938rem;
    padding: 0.4rem 0.8rem;
  }
}
.section-soluciones .contenedor .list-soluciones .categoria .contenido span {
  max-height: 0;
  padding: 0;
  opacity: 0;
  transition: all 0.3s ease;
}
@media (max-width: 780px) {
  .section-soluciones .contenedor .list-soluciones .categoria .contenido span {
    padding: 0.5rem 1rem;
    opacity: 1;
    max-height: 6rem;
  }
}
.section-soluciones .contenedor .list-soluciones .categoria:hover {
  background-size: 110% 110%;
}
.section-soluciones .contenedor .list-soluciones .categoria:hover .contenido span {
  padding: 0.5rem 1rem;
  opacity: 1;
  max-height: 6rem;
}

.section-productos {
  min-height: -moz-fit-content;
  min-height: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.section-productos .contenedor h2 {
  font-size: 1.875rem;
  font-family: "Exo", sans-serif;
  font-style: italic;
  font-weight: 900;
  color: #15253f;
  text-transform: uppercase;
}
@media (max-width: 780px) {
  .section-productos .contenedor h2 {
    text-align: center;
  }
}
.section-productos .contenedor .products .ti_card_product {
  width: calc(25% - 1rem);
}
@media (max-width: 780px) {
  .section-productos .contenedor .products .ti_card_product {
    width: calc(50% - 1rem);
  }
}
@media (max-width: 560px) {
  .section-productos .contenedor .products .ti_card_product {
    width: 100%;
    max-width: 20rem;
  }
}
.section-productos .contenedor .products-slider {
  width: 100%;
  padding-bottom: 2rem;
}
.section-productos .contenedor .products-slider .splide__track {
  width: 100%;
}
.section-productos .contenedor .products-slider .splide__slide {
  height: auto;
}
.section-productos .contenedor .products-slider .ti_card_product {
  width: 100%;
}
.section-productos .contenedor .products-slider .splide__pagination {
  bottom: 0;
}
.section-productos .contenedor .products-slider .splide__pagination li button {
  width: 0.3rem;
  height: 0.3rem;
  background-color: #15253f;
  border-radius: 1rem;
  opacity: 1 !important;
}
.section-productos .contenedor .products-slider .splide__pagination li button.is-active {
  width: 1.5rem;
  background-color: #1f9ad7;
  transform: scale(1);
}

.banner-fabricante {
  height: -moz-fit-content;
  height: fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
}
.banner-fabricante .contenedor {
  position: relative;
}
.banner-fabricante .contenedor::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 82%;
  background-image: var(--bg-banner-representante);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  border-radius: 0.85rem;
}
@media (max-width: 780px) {
  .banner-fabricante .contenedor::before {
    height: 100%;
  }
}
@media (max-width: 758px) {
  .banner-fabricante .contenedor::before {
    height: 82%;
  }
}
.banner-fabricante .contenedor::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 82%;
  border-radius: 40px 40px 0 40px;
  opacity: 0.5;
  background: #14243E;
  z-index: 1;
}
.banner-fabricante .contenedor .contenido-banner {
  position: relative;
  z-index: 2;
  padding: 0 0 0 3rem;
  align-items: center;
  display: grid;
  grid-template-columns: 30rem minmax(0, 1fr);
}
@media (max-width: 780px) {
  .banner-fabricante .contenedor .contenido-banner {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 1.5rem 0 1.5rem;
  }
}
.banner-fabricante .contenedor .contenido-banner .contenido {
  width: 100%;
  max-width: 100%;
  position: relative;
  bottom: 2rem;
}
@media (max-width: 758px) {
  .banner-fabricante .contenedor .contenido-banner .contenido {
    bottom: 0;
  }
}
@media (max-width: 780px) {
  .banner-fabricante .contenedor .contenido-banner .contenido {
    height: auto;
  }
}
.banner-fabricante .contenedor .contenido-banner .contenido h2 {
  color: #FFF;
  font-family: "Exo", sans-serif;
  font-size: 42px;
  font-style: italic;
  font-weight: 700;
  line-height: 120%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.banner-fabricante .contenedor .contenido-banner .contenido h2 span {
  color: #FFF;
  font-family: "Exo", sans-serif;
  font-size: 48px;
  font-style: italic;
  font-weight: 700;
  line-height: 120%;
}
.banner-fabricante .contenedor .contenido-banner .contenido a {
  padding: 0.5rem 1rem;
  border-radius: 3rem;
  color: #1f9ad7;
  font-size: 1.125rem;
  font-weight: normal;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.banner-fabricante .contenedor .contenido-banner .contenido a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(85deg, #1f9ad7 37.44%, #2ba9ee 90.96%);
  border-radius: 3rem;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}
.banner-fabricante .contenedor .contenido-banner .contenido a span {
  color: #1f9ad7;
  font-size: 1.125rem;
  font-weight: normal;
  position: relative;
  transition: all 0.3s ease;
  z-index: 2;
}
.banner-fabricante .contenedor .contenido-banner .contenido a span::before {
  font-weight: normal;
  content: attr(data-title);
  position: absolute;
  font-size: 1.125rem;
  width: -moz-max-content;
  width: max-content;
  line-height: 1.2;
  opacity: 0;
  transition: all 0.3s ease;
}
.banner-fabricante .contenedor .contenido-banner .contenido a svg {
  height: 1rem;
  width: 2rem;
  z-index: 2;
}
.banner-fabricante .contenedor .contenido-banner .contenido a svg path {
  fill: #1f9ad7;
  transition: all 0.3s ease;
}
.banner-fabricante .contenedor .contenido-banner .contenido a:hover, .banner-fabricante .contenedor .contenido-banner .contenido a.active {
  background-color: linear-gradient(85deg, #1f9ad7 37.44%, #2ba9ee 90.96%);
  color: #ffffff;
}
.banner-fabricante .contenedor .contenido-banner .contenido a:hover::before, .banner-fabricante .contenedor .contenido-banner .contenido a.active::before {
  opacity: 1;
  z-index: 1;
}
.banner-fabricante .contenedor .contenido-banner .contenido a:hover span, .banner-fabricante .contenedor .contenido-banner .contenido a.active span {
  color: transparent;
}
.banner-fabricante .contenedor .contenido-banner .contenido a:hover span::before, .banner-fabricante .contenedor .contenido-banner .contenido a.active span::before {
  opacity: 1;
  color: #ffffff;
  font-weight: normal;
}
.banner-fabricante .contenedor .contenido-banner .contenido a:hover svg path, .banner-fabricante .contenedor .contenido-banner .contenido a.active svg path {
  fill: #ffffff;
}
@media (max-width: 780px) {
  .banner-fabricante .contenedor .contenido-banner .contenido a {
    font-size: 0.938rem;
    padding: 0.4rem 0.8rem;
  }
}
.banner-fabricante .contenedor .contenido-banner > img {
  margin: 0 0 0 auto;
}
@media (max-width: 780px) {
  .banner-fabricante .contenedor .contenido-banner > img {
    margin: auto;
    height: 18rem;
    width: auto;
    max-width: 100%;
    aspect-ratio: 13.9/16;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: bottom;
       object-position: bottom;
  }
}/*# sourceMappingURL=index.css.map */