@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text&display=swap');
*{margin: 0; padding: 0; box-sizing: border-box;}

.displayNone{display: none;}

/*predefinidos*/

link{
  color: none;
  background: none;
}
h1{
  margin: 0;
  padding:0;
}
p{
  margin: 0;
  padding:0;
}
a{
  text-decoration: none;
  color: none;
  margin: none;
  padding: none;
}
ul{
  margin: 0;
  padding: 0;
}
/*-ACLARACIONES-
---ob=onboarding
---ac=acciones
---cl=contactless
*/
/*----- TEXTOS -----*/
/*tamaño*/
.titulo1{font-size: 7vh;}
.titulo2{font-size: 5vh;}
.titulo3{font-size: 4vh;}
.titulo4{font-size: 3vh;}
.titulo5{font-size: 2vh;}
.titulo6{font-size: 2.5vh;}
.texto1{font-size: 1.5vh}
.texto2{font-size: 1.7vh}
.texto{
    color: rgb(76, 76, 76);
    font-weight: 400;
    line-height: 1.4rem;
    max-width: 90%;
    margin:0 15%;
}

/*tipografia*/
.dmserif{font-family: 'DM Serif text', serif;}
.montserrat{font-family: 'Montserrat', sans-serif;}

/*posición*/
.izquierda {text-align: left;}
.center {text-align:center;}
.right {text-align:right;}

/*peso de fuentes*/
.negrita{font-weight:700;}
.medio{font-weight: 550;}
.fino{font-weight:400;}

/*colores*/
.azul{color: #0195E6;}
.naranja{color: #F19C20;}
.gris_oscuro{color: #6e6e6e;}
.gris_claro{color: #f7f7f7;}
.blanco{color: #FFFFFF;}
.negro{color: #000000;}

/*colores de fondo*/

.f-azul{background-color: #0195E6;}
.f-naranja{background-color: #F19C20;}
.f-gris_oscuro{background-color: #6e6e6e;}
.f-gris_claro{background-color: #f7f7f7;}
.f-blanco{background-color: #FFFFFF;}
.f-negro{background-color: #000000;}

/*sacar decoracion*/
.nodecoration{
  text-decoration: none;
  border: none;
}
.margenmenu{
    margin:1rem 0rem;
}
.margenizquierda{
    margin-left: 10vw;
}
/*---HEADER---*/
header{
    width: 100%;
    background: #0195E6;
    box-shadow: 0 0 10px 0 black;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: center;
    align-content: stretch;
}
header h1{
    display: inline-block;
}
.logo{
    font-size: 7vh;
    font-family: 'DM Serif text', serif;
    font-weight:700;
    color: #ffffff;
}
.menu li{
    display: inline-block;
    padding: 0.5rem;
    position: relative;
    border-radius: 0.2rem;
}
.menu li a{
    text-decoration: none;
    font-size: 3vh;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    padding: 0.5rem;
    display: block;
}
.menu li:hover{
    text-decoration: underline;
    font-weight: 600;
    background-color: #F19C20;
}
.submenu{
    display: none;
    position: absolute;
    background: #6e6e6e;
    box-shadow: 0 5px 10px 0px rgb(146, 146, 146);
}
.submenu li{
    display: inline-block;
}
.submenu li a{
    text-decoration: none;
    display: block;
    font-weight: 400;
}
.submenu li a:hover{
    text-decoration: underline;
    font-weight: 600;
}
.menu li:hover .submenu{
    display: block;
}
header hr{width: 80%; margin-left: auto; margin-right: auto;}
/*---FIN HEADER---*/

body{
    background-color: #f7f7f7;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    width: auto;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}
.contenedor{
	display: flex;
	flex-direction: column;

	justify-content: center;
	align-items: center;
    align-content: stretch;
    height: 80%;
}
.integrantes{
    background: rgb(255, 255, 255);
    border-radius: 0.2rem;
    width: 90%;
    margin-top: 3%;
    box-shadow: 0 0 10px 0 rgb(131, 131, 131);
    text-align: center;
    padding:1vw;
}
.menugeneral{
    background: rgb(76, 76, 76);
    padding: 2%;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.alumnos{
    color: #0195E6;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: stretch;
    padding: 0 2%;
}
.alumno{
    color:  rgb(255, 255, 255);
    background: #0195E6;
    width: 15vw;
    height: 7vw;
    border-radius: 0.2rem;
    padding: 1%;
    margin: 1rem 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.alumno a{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: center;
	align-content: center;
}
.alumno:hover{
    color:  rgb(255, 255, 255);
    background-color: #F19C20;
    font-weight: 700;
    text-decoration: none;
}
.alumno a{
    text-decoration:none;
    color: rgb(255, 255, 255);
}
.foto{
    border-radius: 50%;
    width: 5vw;
}
.datosdelaapp{
    background: rgb(255, 255, 255);
    border-radius: 0.2rem;
    padding:2vw 10vw 2vw 10vw;
    width: 90%;
    margin-top: 3%;
    box-shadow: 0 0 10px 0 rgb(131, 131, 131);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: stretch;
}
.datosdelaapp p{
    color: rgb(76, 76, 76);
    font-size: 1.1vw;
    font-weight: 400;
    line-height: 1.4rem;
    margin: auto;
    align-content: center;
}

.contenidoPlan{
    background: rgb(255, 255, 255);
    border-radius: 0.2rem;
    width: 90%;
    margin-top: 2rem;
    margin-bottom: 9rem;
    padding:0 0 1rem 0;
    box-shadow: 0 0 10px 0 rgb(131, 131, 131);
    text-align: center;
}
.contenidoPlan article{
    width: 100%;
}
.contenidoMapa{
    background: rgb(255, 255, 255);
    border-radius: 0.2rem;
    width: 90%;
    margin-bottom: 9rem;
    margin-top: 2rem;
    padding:0 0 1rem 0;
    box-shadow: 0 0 10px 0 rgb(131, 131, 131);
    text-align: center;
}
.separador{
    width: 88%;
    margin: 2rem auto;
}
/*---FOOTER---*/
footer{
    background: #0195E6;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    box-shadow: 0 0 10px 0 black;

    bottom: 0;
    height: 13%;
}
.fixed{
    position: fixed;
}
footer p{
    color: #f7f7f7;
    font-size: 1.5vh;
    line-height: 1.1rem;
    max-width: 60%;
    margin: 1rem auto;
}
footer a{
    text-decoration: none;
    color: #F19C20;
    font-weight: 500;
}
footer a:hover{
    font-weight: 600;
}
/*---FIN FOOTER---*/

.filaflex{
  display:flex;
  flex-direction:row;
  justify-content:center;
  flex-wrap:wrap;
  width:90%;
  margin-top:3%;
}

.box1{
 width: 32%;
 background-color:white;
 padding:2%;
 margin:0 2% 0 0;
 box-shadow: 0 0 10px 0 rgb(131, 131, 131);
}
.box2{
  width: 32%;
  background-color:white;
  padding:2%;
  margin:0 0 0 0;
  box-shadow: 0 0 10px 0 rgb(131, 131, 131);
}
.box3{
  width: 32%;
  background-color:white;
  padding:2%;
  margin: 0 0 0 2%;
  box-shadow: 0 0 10px 0 rgb(131, 131, 131);
}

.texto3{
  font-size:1.3vh;
  line-height: 1.5;
}

.nombre{
  font-size: 1.3vw;
}
