
/* Estilos globales de la página */
* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
  }

/* body {
      font-family: Arial, Helvetica, sans-serif;    
} */
  
.titulo{
  background-image: linear-gradient(to right, rgb(161, 152, 86, 0.9) , rgb(161, 152, 86, 0.4));    
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 2px;
    text-align: center;
    vertical-align: middle;
}

.titulo h3, h4{
  color: rgb(0,0,0,0.4);
}

/* Estilos para las filas de claustro */   
.clauFilaA{    
    background-color: rgb(185, 175, 175, 0.6);
    height: auto;
    padding-top: 10px;
    padding-bottom: 0px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
    margin-bottom: 2px;  
    z-index: 2;   
  }

  .clauFilaB{    
    background-color: rgb(95, 75, 75, 0.5);
    height: auto;
    padding-top: 10px;
    padding-bottom: 5px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
    margin-bottom: 2px;     
  }

  /* Estilos para los datos de cada profesor */
  .cajaFoto{        
    width: 90%;
    height: auto; 
    margin: auto;   
}
  .cajaNombre{
    margin-top: 5px;    
    width: 100%;                          
    height: auto;        
  }
  .cajaContacto{    
    width: 100%;                          
    height: auto;    
  }
  .cajaDirtel{     
    width: 100%;                          
    height: auto;     
  }
  .cajaEmail{     
    width: 100%;                          
    height: auto;    
  }
  .cajaPerfil{    
    width: 100%;                          
    height: auto;    
  }

  .txtNombre, .txtContacto, .txtDirtel, .txtEmail, .txtPerfil{
  color: white;
  text-align: center;
}

.txtContacto>h6, .txtDirtel>h6, .txtEmail>h6, .txtPerfil>h6{
    color: rgb(139, 138, 40);
}
.txtNombre>h6>a{
    color: rgb(15, 37, 9);
    font-size: smaller;
}

.txtNombre>p, .txtContacto>p, .txtDirtel>p, .txtEmail>p, .txtPerfil>p{
    line-height: 1.3;
}

.txtPerfil a{
  color: white;
}
.cajaFoto .imagen{
  border: 1px solid #ddd;
  border-radius: 4px;  
  padding: 3px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  width: 80%; 
  margin: auto;
     
}

#myImgProf:hover{    
    border: 2px solid transparent; 
    opacity: 0.7;
  } 
  
   /* media query */
   @media screen and (max-width: 992px) {    
    
    
    .cajaNombre {
        
        font-size: large;
           
    }
    .txtNombre>h6>a{
        font-weight: bold;
        font-size: x-large;
        color: rgb(23, 49, 16);
    }
    .cajaContacto {
        font-size: large;
    }
    .cajaDirtel {
        font-size: large;
    }
    .cajaEmail {
        font-size: large;
    }
    .cajaPerfil {
        font-size: large;
    }
  }
  
 /* termina media query */

 