* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Work Sans';
}

.introduccion {
	padding: 50px 0;
	width: 90%;
	max-width: 1200px;
	margin: auto;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.introduccion h3 {
	text-align: right;
}

.introduccion img {
	width: 90%;
}


.texto-introduccion {
	padding: 0px 50px;
	width: 90%;
	margin: auto;
	overflow: hidden;
	text-align: justify;
}

.grupo-proyectos {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
	
	background-color: #fff;
	
}

.proyecto {
	border-radius: 5px;
	
	display: flex;
	align-items: center;
}

.proyecto a {
	text-decoration: none;
	align-content: center;
	border-radius: 5px;
}

.proyecto a:hover {
	text-decoration: none;
	border-radius: 5px;
	background: rgba(46, 100, 235, 0.5)
}


.proyecto img {
	width: 70%;
}


.seccion {
	padding: 60px 0;
	width: 90%;
	max-width: 1000px;
	margin: auto;
	overflow: hidden;
	align-items: center;
	justify-content: space-between;
}

.titulo {
	color: #2e64eb;
	font-family: 'Aclonica';
	font-size: 50px;
	text-align: center;
	margin-bottom: 60px;
}

.titulo-proyecto {
	color: #2e64eb;
	font-family: 'Aclonica';
	font-size: 30px;
	text-align: center;
	margin-bottom: 60px;
}

header {
	width: 100%;
	height: 600px;
	background: -moz-linear-gradient(left, rgba(125, 185, 232, 0) 0%,
		rgba(46, 100, 235, 1) 100%), url(../img/portada.png); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(125, 185, 232, 0) 0%,
		rgba(46, 100, 235, 1) 100%), url(../img/portada.png);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(125, 185, 232, 0) 0%,
		rgba(46, 100, 235, 1) 100%), url(../img/portada.png);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007db9e8',
		endColorstr='#1e5799', GradientType=1); /* IE6-9 */
	text-align: right;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
}

nav {
	font-family: 'Work Sans';
	
	text-align: right;
	padding: 30px 50px 0 0;
}

nav>a {
	color: #ffffff;
	font-weight: 300;
	text-decoration: none;
	margin-right: 10px;
}

nav>a:hover {
	color: #eeeeee;
	font-weight: 300;
	text-decoration: underline;
	margin-right: 10px;
}

.wave {
	position: absolute;
	bottom: 0;
	width: 100%;
}

footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background:  #414141;
	padding: 60px 0 30px 0;
	margin: auto;
	overflow: hidden;
	
}

.contenido-foot {
	width: 28%;
	text-align: center;
}