
/* Pie de página */
footer {
    background-color: #3333337d;
    padding: 1vw;
    text-align: center;
    position: relative;
    
}
footer a {
  text-decoration: none;
  color: black;
font-weight: 500;
  position: relative;
  transition: color 0.3s;
  font-size: 1.5vw;
  
}
footer p {

  font-size: 2vw;
  
}

footer a:hover {
  color: blue;
 
 
}

footer a::after {

  content: "";
  position: absolute;
  width: 100%;
  height: 1.5px;
  background-color: blue;
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

footer a:hover::after {
  transform: scaleX(1);
}

#contenedor-anima{
    overflow:hidden;
    height:1.5vw;
}   

#anima{
  animation-duration: 60s;
  animation-name: slidein;
  animation-iteration-count: infinite;
  animation-timing-function:linear;
    color: black;
}


@keyframes slidein {
  from {
    margin-left: 100%;
    width: 100vw;
  }

  to {
    margin-left: -160%;
    width: 100vw;
  }
}

.footer {
  background-color: white;
  border-top: 1px solid #dee2e6;
  color: white;
  text-align:center;
  font-size: 1vw;
}

.footer table{
    font-size: 1.5vw;
}
.footer table td{
    
}

/* Media Query para cambiar el menú en pantallas pequeñas .............................................. */
       @media (max-width: 768px)  {
        
footer a {

  font-size: 2vw;
  
}
footer p {
 
  font-size: 2vw;
  
}
footer a:hover {
 font-size: 2vw;
}
input[type="text"],textarea {
            width: 90%;
        }

.tabla_capacitaciones{
    width:80%;
}
.tabla_index_contacto{
    width:90%;
}
/* tablas de servicios*/
        .normal{
            display: none; /* oculta el menu segundario*/
        }
        .small{
            display: block;
                justify-content: center; 
    display: flex;
        }
}