*{
    margin: 0;
    padding: 0;
}

body{
    font-family:'Roboto', sans-serif;
    background-color: white;
}
/*------- Menu ---------*/

.contenedor{
    
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.menu {
	background-color: black;
	height: 3.2em;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.menu_items {
	display: flex;
    z-index: 9900;
}

.menu_items li {
	border-radius: 3px;
	margin: 0 5px;
}

.menu_items li a {
	padding: 7px 13px;
	text-decoration: none;
	display: block;
	text-transform: uppercase;
	color: white;
    
}

.menu_items li:hover {
	background-color: rgba(153, 149, 149, 0.3);
	transition: 0.4s;
}

.btn_menu {
    padding: 1em;
	font-size: 25px;
	color: rgb(40, 172, 132);
	cursor: pointer;
	display: none;
}

ul.icons {
	top: 65px;
}

nav .logo {
    padding: 0.5em;
    margin-left: 0.5em;
}
nav a img {
    width: 5em;
}
nav ul li{
    
    list-style: none;
}

/* Banner: foto, título, texto */


.banner{
    
    width: 100%;
    height: 550px;
    background-image: url(../imagenes/puente.jpeg);
    background-position: top;
    background-size: cover;
    margin-bottom: 2em;
    
}

.banner > div{
    
    width: 100%;
    height: 100%;
    background-color: rgba(219, 209, 189, 0.4);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}

.infopuente h1{
    
    color:white;
    margin: 20px;
    font-size: 30px;
    text-shadow: 2px 2px 2px black;
}

.infopuente p{
    
    width: 80%;
    max-width: 800px;
    margin: auto;
    display: block;
    margin: 20px;
    padding: 1em;
    background-color: rgba(0, 0, 0, 0.5);
    color:white;
    font-size: 20px;
    text-align: left;
    margin: 20px;
    
}

/* FIN banner: foto, título, texto */

/* INTEGRANTES */
h4{
    padding: 1em;
    text-align: center;
    font-size: 2em;
}

.integrantes{    
    margin-top: 1em;
    margin-bottom: 2em;
}

.integrantes ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-around;
    
}

.integrantes ul li a{
    
    display: block;
    margin: 20px;
    text-align: center;
    text-decoration: none;
    color: black;
}

.integrantes img{
    
    width: 250px;
    border-radius: 250px;
}

.integrantes p{
    font-size: 20px;
    margin: 15px;
}

.integrantes a:hover{
    color: #53BF84;
}

/* FIN INTEGRANTES */
h3{
    display: block;
    color: white;
    text-align: center;
    font-size: 20px;    
    background-color: black;
    padding: 1em;
}

.datosacademicos{
    
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    padding: 1em;
    background-color: #53BF84;
    color: white;
    font-size: 1.2em;
}

.datosacademicos ul li{
    list-style: none;
}
.datosacademicos div{
    padding: 1em;
}

 

/*****************FOOTER*****************/

footer {
    background-color: black;
    color: white;
    padding-left: 2em;
    padding-right: 2em;
    
}

footer img{
    display: block;
    height: 4em;
    padding: 2em;
    text-align: left;
}

footer p{
    display: block;
    text-align: center;
    font-size: 0.8em;
    line-height: 1.5em;
    border-top: 0.1em solid white;
    padding: 2em;
}

footer .imagenesfooter{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    
    }
/********PLAN***********/

.plan {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 1em;
    justify-content: space-around;
    color: black;
}

.plan div{
    display: block;
    margin: 1em;
    width: 46em;
    padding: 1em;    
    text-align: center;
    background-color: rgb(138, 222, 176)
}

main div img{
    max-width: 80%;
    height: 8em;
    padding: 2em;
    
}


.propuesta {
    width: 90%;

}

.plan p{
    padding: 1em;
}
/**********MAPA**********/
.mapa {
    text-align: center;
}

.mapa img {
    width: 100%;
    max-width: 55em;
    
}

/**********Mockup**********/

.mockup ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1em;
    list-style: none;
}
.mockup img {
        border: 1px solid rgba(206, 204, 204, 0.85);
    max-width: 100%;
}
/*-------------- media ----------------*/

@media screen and (max-width: 952px) {
	
	.menu_items li a {
		font-size: 16px;
	}
    
}

@media screen and (max-width: 858px) {
	.menu {
		height: 65px;
	}
	.btn_menu {
		display: inline-flex;
	}
	.menu_items {
		position: fixed;
		width: 100vw;
		height: calc(100% - 65px);
		top: -100vh;
		text-align: center;
		transition: all 0.4s;
		flex-direction: column;
		background-color: rgba(0, 0, 0, 0.7);
	}
	.menu_items li {
		margin: 30px 0 0 0;
		line-height: 30px;
	}
	.menu_items li:hover {
		background: none;
	}
	.menu_items li a {
		font-size: 20px;
		color: rgb(255, 255, 255);
		font-weight: bold;
	}
	.menu_items li a:hover {
		color: black;
	}
	
}


@media screen and (max-width: 858px) and (orientation: landscape) {
	.menu_items li {
		margin: 5px 0 0 0;
	}
	.menu_items {
		overflow: scroll;
		height: calc(100% - 65px);
	}
    
}
