  .title {
    padding-top: 50px;
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    color: #ffffff; /* Añade color de texto para que sea visible en la imagen de fondo */
  }
  .sub-text{
    font-size: 20px;
    font-style:oblique;
    font-weight: 500;
    text-align: center;
    color: #ffffff; /* Añade color de texto para que sea visible en la imagen de fondo */
    
  }
  
  
  .lab {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
  
  }
  
  /* Estilos del cuadro */
  .box {
    background-color: #ffffff;
    border: 2px solid #007bff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
}

.box:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.box h2 {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 10px;
    cursor: pointer;
}
  .box p {
    font-size: 16px;
    line-height: 1.5;
  }


/* 
  .accordion{
    width: 100%;
    height: 80px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.accordion .icon-faq{
    margin: 0 10px 0 10px ;
    width: 10px;
    display: flex;
    height: 10px;
    min-height: auto;
    text-align: center;
    justify-content: center;
    float: left;
    transition: all .5s ease-in;
    color: #000000;
    --transform:rotate(-180deg);

}

.activate .icon-faq{
    transform: var(--transform);
    transition: transform .3s ;
} */

/* .accordion h5{
    font-size: 18px;
    margin: 0;
    padding: 3px 0 0 0;
    font-weight: normal;
    color: rgb(7, 10, 46) ;
}


.accordion .icon-faq i{
   line-height: 30px;
   width: 30px;
  

}

.panel-instructor{
    padding: 0 15px;
    border-left: 1px solid rgb(36, 46, 77);
    margin-left: 25px;
    font-size: 14px;
    text-align: justify;
    overflow: hidden;
    max-height: 0;
    transition: all .5s ease-in;
}

.panel-instructor > ul{
    margin: 0 0 0 30px;

}

.panel-instructor > label{
    font-weight: 700;

} */




  
  .slider-container {
    position: relative;
    width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
    position: relative;
    width: max-content;
}

.slider img {
    max-width: 100%;
    width: 700px;
    height: auto;
    display: block;
}

.prev-button,
.next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 20px;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    z-index: 1;
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}
  @media (max-width: 768px) {
    .box h2 {
      font-size: 18px;
      font-weight: bold;
      color: #000000;
      margin-bottom: 10px;
    }
    
    .box p {
      font-size: 13px;
      line-height: 1.5;
    }
  }