
/*Tabla de Instituciones*/
.table-container {
  width: 100%;
  overflow-x: auto; 
}

h2 {
  text-align: center;
  color: #333;
  margin-top: 100px;
}

table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    text-align: center;
    padding: 13px;
    border: 1px solid #ddd;
}
/* Media Query para pantallas menores a 768px */
@media (max-width: 768px) {
  th, td {
      font-size: 14px;
      padding: 8px;
  }
}

@media (max-width: 480px) {
  th, td {
      font-size: 12px;
      padding: 6px;
  }
}
@media (max-width: 376px) {
  th, td {
    font-size: 12px;
  }
}

@media (max-width: 320px){
  th, td {
    font-size: 10px;
  }
}


th {
    background-color: red;
    color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #ddd;
}

/* Estilos específicos para la columna de logos */
td img {
    max-width: 100%;
    height: auto;
    width: 50px; /* Ajusta el tamaño según lo necesites */
    margin: 0 auto;
}

/*Tabla de Instituciones*/

  /*Tabla de Instituciones*/



















  
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  /* FOOTER */
  footer {
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    background-color: #2d2e33;
    padding: 60px 5%;
    gap: 0rem;
  }
  
  .footer-logo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 20%;
    min-width: 200px;
  }
  
  .footer-logo img {
    width: 170px;
    border-radius: 50%;
    transition: transform 0.3s ease;
  }
  
  .footer-logo img:hover {
    transform: scale(1.05);
  }
  
  .footer-col {
    flex: 1;
    min-width: 200px;
    padding: 0 15px;
  }
  
  .footer-col h4 {
    position: relative;
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 22px;
    color: #f1bc0d;
    text-transform: capitalize;
  }
  
  .footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    background-color: white;
    height: 2px;
    width: 40px;
    transition: width 0.3s ease;
  }
  
  .footer-col:hover h4::before {
    width: 60px;
  }
  
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  ul li {
    margin-bottom: 12px;
  }
  
  ul li a {
    display: block;
    font-size: 17px;
    text-transform: capitalize;
    color: #bdb6b6;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
  }
  
  ul li a:hover {
    color: white;
    
  }
  
  .links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .links a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 44px;
    color: white;
    background-color: rgba(40, 130, 214, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .links a:hover {
    color: #4d4f55;
    background-color: white;
    transform: translateY(-3px);
  }
  
  /* Media Queries */
  @media (max-width: 1024px) {
    footer {
      padding: 40px 4%;
    }
  
    .footer-logo {
      width: 100%;
      margin-bottom: 2rem;
    }
  
    .footer-col {
      width: calc(50% - 2rem);
    }
  }
  
  @media (max-width: 768px) {
    .footer-col {
      width: 100%;
      text-align: center;
      margin-bottom: 2rem;
    }
  
    .footer-col h4::before {
      left: 50%;
      transform: translateX(-50%);
    }
  
    .links {
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    footer {
      padding: 30px 20px;
    }
  
    .footer-logo img {
      width: 140px;
    }
  
    .footer-col h4 {
      font-size: 20px;
    }
  
    ul li a {
      font-size: 16px;
    }
  }
  
  /* FOOTER */