*{
	box-sizing: border-box;
}
body{
	background: #fff;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
}
.contenedor{
	width: 90%;
	max-width: 1000px;
	margin: auto;
	overflow: hidden;
}
/*-----HEADER----------*/
header{
	background: url('../img/bg2.jpg')#150716;
	background-repeat: no-repeat;
	background-position: center;
	max-height: 600px;
}
header .menu{
	margin: 40px 0;
	
	text-align: right;
}
header .menu a{
	margin: 0 20px;
	color:  #fff;
	padding-bottom: 9px;
	display: inline-block;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	font-size: 1em;
}
header .menu a:hover{
	border-bottom: 2px solid #fff;
}
header .contenedor-texto{

	display: flex;
	margin: 190px 0;
	justify-content: center;
	align-content: center;
}
header .contenedor-texto .texto{
	background: rgba(51, 18, 49, 0.5);
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 3px;
	display: inline-block;
	text-align: center;
	padding: 20px 60px;
}
header .contenedor-texto .texto h1,
header .contenedor-texto .texto h2{
	color: #fff;
	font-weight: 300;
	margin: 0;
}
header .contenedor-texto .texto .nombre{
	margin-bottom: 10px;
	font-size: 50px;
	line-height: 50px;
}
header .contenedor-texto .texto .profesion{
	font-size: 25px;
	line-height: 25px;
}
/*------Acerca De--------*/
.main .contenedor{
	overflow: visible;
}
.main .acerca-de{
	text-align: center;
}
.main .acerca-de .foto{
	margin-top: -60px;
}
.main .acerca-de .foto img{
	vertical-align: top;
	border-radius: 50%;
	border: 8px solid rgba(51, 18, 49,0.7);
}
.main .acerca-de .texto{
	color: #361334;
	font-weight: 600;
	font-size: 1em;
	line-height: 30px;
	width: 80%;
	margin: 40px auto 60px auto;
}
.main .acerca-de .texto .titulo{
	font-size: 34px;
	line-height: 34px;
	margin-bottom: 40px;
	font-weight: 300;
	color: #361334;
	text-align: center;
}
.main .acerca-de .texto .bold{
	color: #71036b;
	text-decoration: none;
}
/*-------Trabajos----------*/
.main .trabajos{
	background: #6f256c;
	padding: 60px 0;
}
.main .trabajos .contenedor{
	overflow: hidden;
}
.main .trabajos .titulo{
	font-size: 34px;
	line-height: 34px;
	margin-bottom: 40px;
	font-weight: 300;
	color: #fff;
	text-align: center;
}
.main .trabajos .contenedor-trabajos{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}
.main .trabajos .contenedor-trabajos .trabajo{
	width: 23%;
	margin-bottom: 40px;
}
.main .trabajos .contenedor-trabajos .trabajo .thumb{
	width: 100%;
	margin-bottom: 10px;
}
.main .trabajos .contenedor-trabajos .trabajo .thumb img{
	width: 100%;
	vertical-align: top;
	border-radius: 3px;
}
.main .trabajos .contenedor-trabajos .trabajo .descripcion{
	text-align: center;
}
.main .trabajos .contenedor-trabajos .trabajo .descripcion .nombre{
	font-weight: 700;
	color:#fafafa;
	margin-bottom: 10px;
}
.main .trabajos .contenedor-trabajos .trabajo .descripcion .categoria{
	color:#fafafa;
	font-size: 14px;
}
/*----Contacto----*/
.main .acerca-de .texto .titulo2{
	font-size: 34px;
	color: #6e256c;
	text-align: center;
}
.main .acerca-de .texto p{
	font-size: 28px;
	color: #6e256c;
}
.main .acerca-de .texto a{
	text-decoration: none;
	color: #6e256c;
	font-size: 28px;
}

/*-------Redes Sociales---*/
footer .redes{
	background: #6f256c;
	padding: 60px 0;
}
footer .redes .contenedor{
	display: flex;
	justify-content: center;
}
footer .redes a{
	color: #fff;
	text-align: center;
	width: 100px;
	display: block;
	padding: 15px 0px;
	border-radius: 3px;
	font-size: 30px;
	margin: 0 20px;
}
footer .redes .linkedin:hover{
	background: #009296;
}
footer .redes .facebook:hover{
	background :#009296;
}
footer .redes .behance:hover{
	background :#009296;
}
footer .redes .youtube:hover{
	background :#ff0000;
}
footer .redes .github:hover{
	background :#666666;
}
/*------Media QUERIES------*/
@media screen and (max-width: 800px){
	header .menu{
		text-align: center;
	}
 	.main .trabajos .contenedor-trabajos .trabajo{
		width: 46%;
	}
	.main .acerca-de .texto p {
		font-size: 22px;
	}
}
@media screen and (max-width: 500px){
	header .contenedor-texto .texto .nombre{
		font-size: 35px;
	}
	header .contenedor-texto .texto .profesion{
		font-size: 18px;
	}
	footer .redes .contenedor{
		flex-wrap: wrap;
		padding: 20px 0;
	}
	.main .acerca-de .texto p{
		font-size: 18px;
	}
}
