@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Roboto');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
}
#ingresar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    background-color: black;
    margin: auto;
}
.logo {
    max-width: 60%;
    margin: auto;
    margin-top: 15%;
    margin-bottom: 7%;
}
.centro {

    width: 50%;
    text-align: center;
}
.olvidaste a {
    color: #82E0AA;
}
.formulario {
    display: flex;
    flex-direction: column;
    border: none;
    margin: auto;
}

.escribir{
  margin: 4% 0 1% 25%;   
}

input {
    margin-bottom: 10px;
    padding-right: 15px;
}
.entrar a {
    text-align: center;
    background-color: #8AC7A2;
    color: black;
    padding: 5px;
    margin-left: 43%;
    border-radius: 5px;

}

.entrar{
     margin: 1.1em 0em 1em 0em;
    
}
.olvidaste {

    text-align: center;
    margin-top: 2%;
    font-size: 0.8em;
}

.entrada{
    margin: auto;
}


/*
@media only screen and (min-width:500px) {

    .logo {
        max-width: 25%;
        margin-top: 5%;
        margin-right: 33%;
    }
    .formulario {
        margin: 5% 0 3% 46%;

    }

    input {
        margin-bottom: 10px;
        padding-right: 200px;
        padding-bottom: 20px;
    }

    .entrar a {

        padding: 10px;
        margin-left: 53.5%;
        margin-top: 10px;

    }

    .olvidaste {
        margin-left: 10%;
        font-size: 1em;

    }
}
*/

/*--------Lo más visto------*/

.logochico {
    position: absolute;
    right: 0;
    z-index: 99;
}

.botonera {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    width: 100%;
    height: 100vh;
    background: white;

}

.botones {
    width: 100%;
    background: black;
    height: 60px;
    line-height: 60px;
    border-bottom: 1px solid #dddddd;
    display: inline-block;
    font-size: 12px;
}

.visto1 {
    background-color: #82E0AA;
    text-align: center;
    padding: 2%;

}

.visto {
    background-color: #82E0AA;
    text-align: center;
    padding: 2%;
    margin-top: 2em;


}

.footer1 {
    text-align: center;
    background-color: black;
    color: white;
    padding: 3%;
    font-size: 0.7em;

}

/*------Carreras proyectos-------------*/

.body2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    margin: auto;
    background-color:gainsboro;
}

.titulocarreras{
  text-align: center;


}

.contendor {

    position: absolute;
    margin-top: 107px;
    width: 100%;

}

.medida {
    height: calc(100vh-113px)
}

.carrera {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    text-align: center;
    background-color: #82E0AA;
    border-color: white;
}

.mayuscula {
    flex-basis: 50%;
    flex-grow: 1;
    color: white;
    font-family: "Roboto Slab";
    align-content: center;
    border-color: white;
}

.mayuscula a {
    padding: 1.3em;
}

.mayuscula:hover {
    background-color: white;
    color: fuchsia;


}


.nombre {
    font-size: 0.5em;
    color: black;

}

.letra {
    font-size: 1.5em;
    color: black;
}


/*---- Menu desplegable-----*/
.toggle,
[id^=drop] {
	display: none;
}


/* Giving a background-color to the nav container. */
nav { 
	margin:0;
	padding: 0;
	background-color: black;
}

.logoRef {
	display: block;
	padding:.5em;
	font-size:20px;
	line-height: 60px;
}

.logoRef:hover {
    background-color: transparent !important; 
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
	content:"";
	display:table;
	clear:both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
	float: right;
	padding:0;
	margin:0;
	list-style: none;
	position: relative;
	}
	
/* Positioning the navigation items inline */
nav ul li {
	margin: 0px;
	display:inline-block;
	float: left;
	background-color: black;
	}

/* Styling the links */
nav a {
	display:block;
	padding:14px 20px;	
	color:#FFF;
	font-size:17px;
	text-decoration:none;
}


nav ul li ul li:hover { background: #000000; }

/* Background color change on Hover */
nav a:hover { 
	background-color: #000000; 
}


/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
	display: none;
	position: absolute; 
	/* has to be the same number as the "line-height" of "nav a" */
	top: 60px; 
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width:170px;
	float:none;
	display:list-item;
	position: relative;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
	position: relative;
	top:-60px;
	/* has to be the same number as the "width" of "nav ul ul li" */ 
	left:170px; 
}

	



/* Media Queries
--------------------------------------------- */

@media all and (max-width : 768px) {

	#logo {
		display: block;
		padding: 0;
		width: 100%;
		text-align: center;
		float: none;
	}

	nav {
		margin: 0;
	}

	/* Hide the navigation menu by default */
	/* Also hide the  */
	.toggle + a,
	.menu {
		display: none;
	}

	/* Stylinf the toggle lable */
	.toggle {
		display: block;
		background-color:black;
		padding:14px 20px;	
		color:#FFF;
		font-size:17px;
		text-decoration:none;
		border:none;
       
	}

	.toggle:hover {
		background-color: #000000;
	}

	/* Display Dropdown when clicked on Parent Lable */
	[id^=drop]:checked + ul {
		display: block;
	}

	/* Change menu item's width to 100% */
	nav ul li {
		display: block;
		width: 100%;
		}

	nav ul ul .toggle,
	nav ul ul a {
		padding: 0 40px;
	}

	nav ul ul ul a {
		padding: 0 80px;
	}

	nav a:hover,
 	nav ul ul ul a {
		background-color: #000000;
	}
  
	nav ul li ul li .toggle,
	nav ul ul a,
  nav ul ul ul a{
		padding:14px 20px;	
		color:#FFF;
		font-size:17px; 
	}
  
  
	nav ul li ul li .toggle,
	nav ul ul a {
		background-color: #212121; 
	}

	/* Hide Dropdowns by Default */
	nav ul ul {
		float: none;
		position:static;
		color: #ffffff;
		/* has to be the same number as the "line-height" of "nav a" */
	}
		
	/* Hide menus on hover */
	nav ul ul li:hover > ul,
	nav ul li:hover > ul {
		display: none;
	}
		
	/* Fisrt Tier Dropdown */
	nav ul ul li {
		display: block;
		width: 100%;
	}

	nav ul ul ul li {
		position: static;
		/* has to be the same number as the "width" of "nav ul ul li" */ 

	}

}

@media all and (max-width : 330px) {

	nav ul li {
		display:block;
		width: 94%;
	}

}




/*---RecursosGráfico---*/
.centrar1 {
    text-align: center;
    margin: 1em 0em 1em 0em;
    background-color: #82E0AA;
    text-align: center;
    padding: 0.3em;
    font-weight: bold;
    font-size: 1.5em;
}

.formulario2 {
    text-align: center;
    display: flex;
    flex-direction: column;
    border: none;
}
.centrar {
    text-align: center;
    
}
.bodyp {
    margin: auto;
    max-width: 100%;
}

.contenedor1 {
  margin: auto;
    max-width: 100%;
    margin:1em;
    justify-content: space-between;
    }

.contenedor1 figcaption h2{
    font-size: 1.2em;
    color: white;
    margin: 0em 0em 0em 0.2em;
}
.contenedor1 figcaption p{
    font-size: 0.9em;
    color: white;
    margin: 0em 0em 0em 0.2em;
}
.contenedor1 figcaption div{
    font-size: 0.9em;
    color: #5FA37C;
    
}

.contenedor1 figcaption a{
    font-size: 0.9em;
    color:#5FA37C; 
}
.caja1{
    display: flex;
    flex-direction: row;
    margin:auto;
    max-width: 100%;
    justify-content: space-between;
   
}

.tamaño {
    margin: auto;
    max-width: 100%;
    display: block;
}

.galeria{
    background-color: black;
}
.galeria figcaption{
    position: absolute;
    width: 100%;
    background-color: black;
    
}

.imagen{
    margin: 1em;
}

.iconos{
   display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #5FA37C;
    margin: 0.7em 0em 0em 0em;
    
}

.separar{
    padding-bottom: 0.5em;
}

@media(min-width:1023px){
    .contenedor1 {
  
    max-width: 100%;
    margin:4em;
    

    }
}
    
    
/*---tutoriaesarquitectura---*/

.contenedor2 h1{
    font-size:1.5em;
    }
.contenedor2  h2{
    font-size: .8em;
    padding: .5em;
    }
iframe{
    width: 100%
}

.contenedor2{
    margin:0.5em;
  }

.punteado{
    border-bottom: thin dotted;
    padding-bottom: 1em;
    margin-bottom: 1em;
    border-bottom-color:gray; 
}


.ver{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #5FA37C;
    
}

.numeros{
  color: #5FA37C;  
}
.ver2{ 
  color: #5FA37C;
}
.body3{
     background-color: gainsboro;
        
}

.centrartutoriales{
    text-align: center;
    background-color: #82E0AA;
    font-weight: bold;
    font-size: 1.5em;
    margin: 1em 0em 1em 0em;
    
     
}

.punteadotutoriales{
    border-bottom: thin dotted;
    padding-bottom: 1em;
    margin-bottom: 1em;
    border-bottom-color:gray;
    margin: 0.5em;
}
/*---crearcuenta---*/

.formulario2 p{
    
    color:white;
        
}

.blanco{
    color: white;
}
.logo2{
     max-width: 1000%;
    margin: auto;
    padding: 1em;
    
  
    
}

.entrar2{
    margin: 1em 0em 2em 0em;

}

.entrar2 a {
    text-align: center;
    background-color: #8AC7A2;
    color: black;
    padding: 5px;
    border-radius: 5px;
    margin-left: 22%;
    
}

.medio{
    margin: auto;
    max-width: 100%;
}

/*-------perfil----*/

.body5 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    background-color: gainsboro;
}

.fotoperfil {
    border-radius: 65%;
    width: 20%;
    height: 15%;
    margin-top: 2em;


}

.perfil {
    text-align: center;
    margin-bottom: 2em;
}

.di {
    font-size: 1em;
    font-weight: bold;
}

.titulo {
    background-color: #82E0AA;
    margin: auto;
    padding: .2em;
    text-align: center;
}

.flexible {

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: auto;
    max-width: 100%;
    margin: .5em;
    
    
        
}


.achicar {
      
      width: 90px;
    height: 90px;

}

.achicar1{
      
      width: 90px;
    height: 90px;
margin-top: 2em;
}

.flexdiv{
    
    display: flex;
    flex-direction: row;
    max-width: 100%;
    justify-content: space-between;
  border-bottom: thin dotted;
    padding-bottom: 1em;
    margin-bottom: 1em;
    border-bottom-color:gray; 
}

.flexdiv1{
    
    display: flex;
    flex-direction: row;
    max-width: 100%;
    justify-content: space-between;
  border-bottom: thin dotted;
    padding-bottom: 1em;
    margin-bottom: 1em;
    border-bottom-color:gray; 
    align-items: flex-end;
    
}

/*-------slider----*/

.bx-wrapper {
    display: block;
    margin: auto;
    /* align-items: center; */

    border: 5px solid #fff;
    background: #fff;
    font-size: 2em;
}

/*-------cartón----*/

.franja{
    background-color: #82E0AA;
    text-align: center;
    padding: 0.5em;
    font-weight: bold;
}

.franja2{
    background-color: #82E0AA;
    text-align: center;
    padding: 0.1em;
    margin-bottom: 1em;
    margin-top: 1em;
    font-size: 1.1em;
}
.imgcarton{
   width: 80%; 
    display: block;
    margin: auto;
    margin-top: 1em;
}

.imgcarton1{
   width: 80%; 
    display: block;
    margin: auto;
    margin-top: 1em;
    margin-bottom: 2em;
}
.agrandar{
    font-size: 1em;
    display: flex;
    flex-direction: row;
    color: #5FA37C;
    justify-content: center;
    text-align: center;
}


.agrandar2 {
    font-size: 1.5em;
    font-weight: bold;
    color:#5FA37C;
    margin: 0.5em 0em 0.5em 0.5em;
}

.agrandar3{
    font-size: 1em;
    margin-left: 0.5em;
    word-spacing: 3px;
}

.tamaño2{  
display: flex;
    max-width: 100%;
    min-height: auto;
    width: 80%;
    margin: auto;  
}

.tamaño3{  
display: flex;
    max-width: 100%;
    min-height: auto;
    width: 80%;
    margin: auto;  
    margin-top: 1em;
}

.galeria2{
   margin: auto; 
}
.galeria2 figcaption{
    margin: auto;
    width: 80%;
    background-color: black;
    
}

.verde{
    color: #5FA37C;
    text-decoration: none;
}
.iconos2{
display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #5FA37C;
    margin-bottom: 1em;
    }


/*-------aportes----*/

.body6{
    background-color: gainsboro;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    margin: auto;
    
}

.bajarcajas{
    display: flex;
   flex-wrap: wrap; 
}

.flechita {
  width: 100px;
}



label {
  margin-right: 10px;
    
}

input, select {
  flex-grow: 1;
}


.letraaportes{
    font-family: "Roboto";
    display: flex;
    margin-bottom: 0.4em;  
    margin-left: 0.2em;
}

  
    

.franja3{
    background-color: #82E0AA;
    text-align: center;
    font-weight: bold;
    margin: 1em 0em 1em 0em;
    font-size: 1.5em;
}
.margenaportes{
    margin-left: 0.7em;
}
.margenaportes1{
    margin-left: 0.7em;
    margin-right: 3em;
    
}
/*-------chat2----*/

.fondo{
    background-color: white;
    border-radius: 2em;
    
}

.fondo1{
    background-color: #82E0AA;
    border-radius: 2em;
    }
.mover{
  display: flex;
    justify-content: flex-end;   
}

.chatmargen {
 margin: 1em 0.3em 1em 0.3em;   
}

.usuariochat{
    border-radius: 4em;
    margin: 0.5em;
    
}

.fondochat{
    background-color: #82E0AA;
    margin-bottom: 1em; 
    display: flex;
    
}

.nombre{
   margin-top: 2em;
    font-size: 1em;
}

.cajitaflex{
    display: flex;
    background-color: #82E0AA;
    padding: 1em;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.centrochat{
    margin-top: 0.6em;
}

.blanco{
    color: white;
}

@media (min-width:768px){
    .nombre{
        font-size: 2.2em;
        margin-bottom: 2em;
    }
    
    .usuariochat{
    border-radius: 4em;
    margin: 1em;
        width: 10%;
}
    
  .fondo{
    background-color: white;
    border-radius: 2em;
    font-size: 1.8em;
}

.fondo1{
    background-color: #82E0AA;
    border-radius: 2em;
    font-size: 1.8em;
    }  
    
    .cajitaflex{
    padding: 3em;
}
  .centrochat{
    margin-top: 0.6em;
      font-size: 1.8em;
}  
    
}

/*------ Chat -----*/

.estudiantes .person {

    position: absolute;
    margin-top: 1.2em;
    margin-left: 4.5em;
}

.body4 {
    background-color: gainsboro;
}

.estudiantes {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

.fotoestudiante {
    height: 3em;
    width: 3em;
    border-radius: 50%;
    flex: 0 0 auto;
    margin: 0.5em;
}

#conectados {

    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 1em;


}

.nombres {
    max-width: 100%;
    width: 100%;
    color: black;


}

.titulos {

    text-align: center;
    background-color: #82E0AA;
    padding: 2%;
    max-width: 100%;
    margin-top: 1em;
    font-size: 1.5em;
}

.cursada {
    font-size: 1.2em;
    color: darkgray;
    padding: 1em;

}


hr {
    background-color: black;
    height: 1px;

}

.circulo {
    width: .8em;
    height: .8em;
    background-color: mediumseagreen;
    border-radius: 50%;
    margin-top: 2em;
}

