.nav-pills .nav-link.active, .nav-pills .show > .nav-link,
.nav-link:focus, .nav-link:hover{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px 10px 30px;
  border-radius: 10px;
  color: #fff;
  background-color: #1f2732;
}

 .nav-link{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px 10px 30px;
  border:1px solid #1f2732;
  border-radius: 10px;
  color: #42545e;
}

.about-style-04 .steps-content {
  margin: 0px 25px 25px 25px !important;
}

.btn-style1{
  transition: all .5s ease;
}
.btn-style1.white-hover:hover, .btn-style1.white-hover:active, .btn-style1.white-hover:focus {
  border: 1px solid #144c7c;
}
div.video_contenedor {
  position: relative;
}
.innovacion{
  position: absolute;
  bottom: 3%;
  left: 49%;
  transform: translate(-50%, 1%);
  font-size: 30px;
}
@media(min-width:576px){
  .innovacion{
    bottom: 9%;
    left: 53%;
    transform: translate(-50%, -10%);
  }  
}
@media(min-width:768px){
  .innovacion{
    bottom: 30%;
    left: 53%;
    transform: translate(-50%, -10%);
  }  
}
@media(min-width:992px){
  .innovacion{
    bottom: 50%;
    left: 53%;
    transform: translate(-50%, -15%);
  }  
}
@media(min-width:1200px){
  .innovacion{
    bottom: 40%;
    transform: translate(-50%, -50%);
  }  
}

/* ESTILOS PARA EL BOTON DE WHATSAPP FIJO EN LA PAGINA*/
.whatsapp {
  position: fixed;
  z-index: 100;
  bottom: 40px;
  left: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  color: #fff;
  color: white;
  background-color: #25d366;
  text-align: center;
  font-size: 30px;
}

.whatsapp-icon {
  margin-top: 13px;
  color: white;
}

.buy-theme {
  top: 450px;
}

/* ESTILOS PARA LA VENTANA MODAL QUE APARECE AL CARGAR LA PAGINA*/
/* Estilo del modal */
.modal {
    position: fixed;
    z-index: 99999;
    top: 5%;
    left: 0;
    display: none; /* Oculto por defecto */
    overflow: auto;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9); /* Fondo oscuro semi-transparente */
}

@media(min-width:768px){
  .modal {
      top: 0;
  }
}

/* Contenido del modal */
.modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    padding: 20px;
    margin: 15% auto;
    border-radius: 8px;
    background-color: #ddd;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: modalopen 0.5s;
}

/* Animación de apertura */
@keyframes modalopen {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

/* Botón de cerrar */
.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    color:#000;
    cursor: pointer;
    transition: color 0.3s;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover {
    color: #333;
}

/* Estilos para el contenido principal (opcional) */
.content {
    padding: 20px;
    text-align: center;
}