.section.seccion_producto_header {
  position: relative;
}

.section.seccion_producto_header .content h1 {
  font-family: "Sora", sans-serif;
  font-size: 50px;
  color: var(--color-dark-gray);
  font-weight: 700;
  text-align: left;
  margin-bottom: 0;
}

.section.seccion_producto_header .content h2 {
  font-family: "Sora", sans-serif;
  font-size: 25px;
  color: var(--color-dark-gray);
  font-weight: 800;
  text-align: left;
}

  .section.seccion_producto_header .content h2 strong {
      font-weight: 800;
      color: var(--color-light-blue);
  }

.section.seccion_producto_header .content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: min(0.9375rem + 0.9375*((100vw - 20rem) / 70), 1.875rem);
}

@media (min-width: 64rem) {
  .section.seccion_producto_header .content {
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
  }
}

.section.seccion_producto_header .content .texto {
  color: var(--color-dark-gray);
}

.section.seccion_producto_header .content .texto .breadcrumbs {
  font-size: 12px;
  color: var(--color-light-blue);
  font-family: "Sora", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 0;
}

.section.seccion_producto_header .content .texto .marca {
  font-size: 13px;
  color: var(--color-dark-gray);
  font-weight: 400;
  border: 1px solid var(--color-light-blue);
  width: fit-content;
  padding: 5px 10px;
}

.section.seccion_producto_header .content .slider {
  max-width: 90vw;
}

.section.seccion_producto_header .content .slider .slide {
  margin: 0 auto;
  text-align: center;
  max-width: 100vh;
}

.section.seccion_producto_header .content .slider .slide img {
  margin: 0 auto;
  text-align: center;
}


.section.seccion_producto_header .content .slider .slick-dots {
  text-align: center;
}

.section.seccion_producto_header .content .slider .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.section.seccion_producto_header .content .slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.section.seccion_producto_header .content .slider .slick-dots li button:before {
    content: '•';
    font-size: 22px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    text-align: center;
    opacity: .25;
    color: black;
}