.hero {
  position: relative;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide {
  position: relative;
  width: 100%;
}

.diapositiva {
  width: 100%;
  display: none;
  opacity: 0;
  transition: opacity 0.5s;
  flex-direction: column;
}
.diapositiva.active {
  display: flex;
}
.diapositiva_image-1 {
  background-image: url('../img/biossmann-portada-mobile.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 290px;
}
.diapositiva_image-2 {
  background-image: url('../img/biossmann-portada-2-mobile.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 290px;
}
.diapositiva_image-3 {
  background-image: url('../img/biossmann-portada-3-mobile.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 290px;
}
.diapositiva__title {
  font-size: 30px;
  font-family: SFProDisplay-Thin;
}
.diapositiva_box {
  background-color: #53565a;
  padding: 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 300px;
  gap: 15px;
  padding-bottom: 50px;
}
.diapositiva_box h2 {
  font-size: 32px;
  color: #ff8200;
  font-family: SFProDisplay-Thin;
}
.diapositiva_box p {
  color: #fff;
  font-family: SFProDisplay-Light;
}
.diapositiva_box a {
  background: #ff8200;
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 170px;
  cursor: pointer;
  font-family: SFProDisplay-Light;
}

.diapositiva.active {
  opacity: 1;
}
.dots {
  position: absolute;
  bottom: 10px;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  cursor: pointer;
}

.dot.active {
  background-color: #ff8200;
}
/*hero slider*/

/*recompensas hot*/
.recompensas_content_title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.recompensas_content_title h2 {
  font-size: 26px;
  color: #ff8200;
  font-family: SFProDisplay-Thin;
}
.index_recompensas_button_container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.index_recompensas_button_container a {
  background: #ff8200;
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 100%;
  cursor: pointer;
}
/*recompensas hot*/

/*Pasos*/
.pasos {
  background: #eaeaeb;
  padding: 30px 0;
}
.pasos_title {
  margin-bottom: 20px;
  font-family: SFProDisplay-Thin;
}
.pasos_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pasos_container_item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: SFProDisplay-Light;
}
.pasos_container_item_number {
  color: #ff8200;
  font-size: 20px;
  background-color: #fff;
  border: 1px solid #ff8200;
  padding: 5px;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pasos_container_item a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  color: #ff8200;
}
.pasos_container_item img {
  width: auto;
  height: 20px;
}

/*Pasos*/

/*sesión puntos*/
.sesion {
  padding: 30px 0;
}
.sesion_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sesion_container_col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: SFProDisplay-Light;
}
.sesion_container_col_title--mobile {
  display: block;
  font-family: SFProDisplay-Thin;
}
.sesion_container_col_title--desk {
  display: none;
  font-family: SFProDisplay-Thin;
}
.sesion_container_col img {
  height: auto;
  width: 100%;
}
.sesion_container_col a {
  background: #ff8200;
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 50%;
  cursor: pointer;
}
/*sesión puntos*/

/*faqs*/
.faq {
  padding: 30px 0;
  background: #53565a;
}
.faq_title h3 {
  font-family: SFProDisplay-Thin;
  margin-bottom: 20px;
}
.faq_container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.faq_container_item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq_container_pregunta {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  margin-bottom: 10px;
}
.faq_container_pregunta p {
  color: #fff;
  font-family: SFProDisplay-Light;
}
.faq_container_respuesta {
  display: none;
  transition: max-height 1.4s ease;
}
.faq_container_respuesta p {
  color: #fff;
  margin-left: 20px;
  margin-top: -16px;
  margin-bottom: 10px;
  color: #ff8200;
}
.faq_container_respuesta a {
  color: #ff8200;
  line-height: 1.4;
}
.faq_container_item.active .faq_container_respuesta {
  max-height: 300px;
}
.pregunta-expandir {
  width: 18px;
  height: 18px;
  color: #fff;
}
.svg_container {
  display: flex;
  align-items: center;
}
.svg_container img {
  width: 10px;
}
/*faqs*/

/*avisos*/
.terminos {
  padding: 30px 0;
  background-color: #f8f8f8;
}
.terminos_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.terminos_container_termycond a {
  color: #ff8200;
  cursor: pointer;
}
.terminos_container_avisopriv a {
  color: #ff8200;
  cursor: pointer;
}
/*avisos*/

/*aviso de privacidad*/
.privacidad_subheader {
  background-color: #53565a;
  padding: 20px 0;
  border-top: 1px solid #8a8e93;
}
.privacidad_subheader_container_title h1 {
  color: #fff;
  font-weight: 200;
  font-size: 20px;
}
.privacidad_textcontainer {
  padding: 30px 0;
}
/*aviso de privacidad*/

/*Recompensas*/
.recompensas_content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px 0;
}
.recompensas_content_title h1 {
  font-size: 24px;
  font-family: SFProDisplay-Thin;
}
.recompensas_content_title p {
    font-family: SFProDisplay-Light;
}
.recompensas_content_boxes {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}
.recompensas_content_boxes_box {
  display: flex;
  flex-direction: column;
  background-color: #f8f8f8;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.recompensas_content_boxes_box img {
  width: 100%;
  height: auto;
  box-shadow: 0 1px 5px rgba(128, 128, 128, 0.3);
}
.recompensas_content_boxes_box_content {
  display: flex;
  flex-direction: column;
  padding: 10px 10px;
  gap: 10px;
}
.recompensas_content_boxes_box_content h3 {
  color: #53565a;
  font-size: 16px;
  font-weight: 500;
  height: 40px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recompensas_content_boxes_box_content p {
  font-size: 12px;
  height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recompensas_content_boxes_box_content a {
  font-size: 14px;
  color: #ff8200;
  font-weight: 500;
}
.recompensas_content_boxes_box_content .producto_puntos {
  font-size: 16px;
  font-family: SFProDisplay-SemiBold;
}
.recompensas__btn {
  padding: 5px 0;
  background-color: #ff8200;
  border: none;
  color: #fff !important;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: SFProDisplay-Light;
  width: 100px;
  text-decoration: none;
}
.recompensas__btn img {
  width: auto;
  height: 20px;
}


@media screen and (min-width: 360px) {

    .recompensas_content_title h1 {
        font-size: 26px;
    }

}

@media screen and (min-width: 500px) {

    .diapositiva_image-1,
    .diapositiva_image-2,
    .diapositiva_image-3 {
        height: 400px;
    }
    .pasos .wrapper {
        width: 400px;
    }
    .recompensas_content_boxes {
        gap: 20px;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    .index_recompensas_button_container a {
        width: 300px;
    }
    .recompensas_content_boxes_box_content h3 {
      font-size: 20px;
      height: 46px;
    }
    .recompensas_content_boxes_box_content p {
      font-size: 16px;
      height: auto;
    }
    .recompensas_content_boxes_box_content a {
      font-size: 16px;
    }
    .recompensas_content_boxes_box_content .producto_puntos {
      font-size: 20px;
    }
    .pasos {
        padding: 40px 0;
    }
    .pasos_title {
        font-size: 22px;
    }
    .sesion_container {
        width: 400px;
        margin: auto;
    }
    .sesion_container_col_title--mobile {
        font-size: 22px;
    }
    .faq .wrapper {
        width: 400px;
    }
    .faq_title h3 {
        font-size: 22px;
    }
    .terminos_container {
        width: 400px;
        margin: auto;
    }
    .terminos_container_termycond {
        font-size: 18px;
    }

}

@media (min-width: 768px) {
  
  .hero {
    position: relative;
    height: 500px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .diapositiva {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.5s;

    flex-direction: column;
  }
  .diapositiva_image-1 {
    position: relative;
    background-image: url('../img/biossmann-portada-desktop.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
  }
  .diapositiva_image-2 {
    position: relative;
    background-image: url('../img/biossmann-portada-2-desktop.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
  }
  .diapositiva_image-3 {
    position: relative;
    background-image: url('../img/biossmann-portada-3-desktop.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
  }
  .diapositiva_box {
    position: absolute;
    top: 80px;
    left: 40px;
    background-color: #53565a;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 250px;
    width: 400px;
    gap: 15px;
    padding-bottom: 50px;
  }
  .diapositiva_box h2 {
    font-size: 32px;
    color: #ff8200;
    font-weight: 400;
  }
  .diapositiva_box p {
    color: #fff;
  }
  .diapositiva_box a {
    background: #ff8200;
    color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 50%;
    cursor: pointer;
  }

  .diapositiva.active {
    opacity: 1;
  }
  .dots {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
  }

  .dot.active {
    background-color: #ff8200;
  }
  /*hero slider*/

  .recompensas {
    padding: 30px 0;
  }
  .recompensas_content_title h1 {
    font-size: 28px;
  }
  .recompensas_content_title p {
    font-size: 18px;
  }
  .recompensas_content_title h2 {
    font-size: 28px;
  }


  /*Recompensas*/
  .recompensas_content_boxes {
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
  }
  .recompensas_content_boxes_box_content a {
    width: 60%;
  }
  .recompensas_content_boxes_box_content p {
    height: 40px;
  }
  

  /*recompensas hot*/
  .index_recompensas_button_container a {
    padding: 10px 20px;
    width: auto;
  }
  /*recompensas hot*/

  .pasos .wrapper {
    width: 680px;
  }
  .pasos_container {
    flex-direction: row;
  }
  .pasos_container_item {
    flex: 1;
    padding: 0 5px;
    border-right: 1px solid #53565a;
  }
  .pasos_container_item:last-child {
    border-right: none;
  }
  .pasos_container_item a {
    font-size: 14px;
  }
  .pasos_container_item img {
    height: 15px;
  }
  
  .sesion_container {
    flex-direction: row;
    align-items: center;
    width: 680px;
  }
  .sesion_container_col_title--mobile {
    display: none;
  }
  .sesion_container_col_title--desk {
    display: block;
  }

  .faq .wrapper {
    width: 680px;
  }
  
  .terminos_container {
    display: flex;
    flex-direction: row;
    gap: 50px;
    width: 680px;
  }

}

@media screen and (min-width: 1000px) {

    .hero {
        height: 600px;
    }
    .diapositiva_image-1,
    .diapositiva_image-2,
    .diapositiva_image-3 {
        height: 600px;
    }

    .recompensas_content_title h1 {
        font-size: 32px;
    }
    .recompensas_content_title p {
        font-size: 20px;
    }
    .recompensas_content_title h2 {
        font-size: 32px;
    }
    .pasos .wrapper {
        width: 900px;
    }
    .sesion_container {
        width: 900px;
    }
    .faq .wrapper {
        width: 900px;
    }
    .terminos_container {
        width: 900px;
    }
}

@media screen and (min-width: 1200px) {

    .hero {
        height: 700px;
    }
    .diapositiva_image-1,
    .diapositiva_image-2,
    .diapositiva_image-3 {
        height: 700px;
    }
    .diapositiva_box {
        width: 580px;
        left: 15%;
        top: 26%;
        height: 300px;
    }
    .diapositiva_box h1,
    .diapositiva_box h2 {
        font-size: 36px;
    }
    .diapositiva_box p {
        font-size: 22px;
    }
    .diapositiva_box a {
        font-size: 18px;
    }
    .recompensas_content_title h1 {
        font-size: 34px;
    }
    .recompensas_content_title p {
        font-size: 22px;
    }
    .recompensas_content_title h2 {
        font-size: 34px;
    }
    .index_recompensas_button_container a {
        font-size: 22px;
    }
    .pasos .wrapper {
        width: 1100px;
    }
    .pasos_title {
        font-size: 34px;
    }
    .sesion_container {
        width: 1100px;
    }
    .sesion_container_col_title--desk {
        font-size: 34px;
    }
    .sesion_container_col p {
        font-size: 22px;
    }
    .sesion_container_col a {
        font-size: 18px;
    }
    .faq {
        padding: 50px 0;
    }
    .pregunta-expandir {
        width: 22px;
        height: 22px;
    }
    .faq .wrapper {
        width: 800px;
    }
    .faq_title h3 {
        font-size: 34px;
    }
    .faq_container_pregunta p {
        font-size: 22px;
    }
    .faq_container_respuesta p {
      font-size: 20px;
    }
    .svg_container img {
      width: 14px;
    }
    .terminos_container_termycond p {
        font-size: 20px;
    }
    .terminos_container_avisopriv p {
        font-size: 20px;
    }
    .terminos_container {
        width: 1100px;
    }
}
