@font-face {
    font-family: "OswaldBold";
    src: url(../fuentes/Oswald/Oswald-Regular.otf);
}

*{
	padding:0;
	margin:0;
}
html{
	height:100%;
}
body{
	/*background-color: #b3b3b3;*/
	height: 100%;
	font-family: sans-serif, Arial, helvetica;
	font-size: 16px;
	padding-top:30px;
}

nav{
	height:30px;
	background-color: rgba(0,0,0,0.7);
	text-align: right;
	position:fixed;
	left:0;
	right:0;
	top:0;
	z-index: 200;
}

nav ul.menu li{
	display: inline-block;
	line-height:30px;
}

nav ul.menu li a{
	text-decoration: none;
	padding:0 10px;
	transition: background-color .4s ease-in;
	transition: padding .2s ease-in;
}

nav ul.menu li a:hover,
nav ul.menu li a:active{
	background: #09F;
	height:30px;
	padding:10px;
	color:white;
}

nav ul.menu a{
	color:white;
}

section{
	min-height:300px;
	background-color: white;
	margin: auto;
	overflow: hidden;
}

body h2{
	font-family: "OswaldBold", Arial;
	font-size: 40px;
}

body h3{
	font-family: "OswaldBold", Arial;
	font-size: 28px;
}

a:focus {
	outline:0px !important;
	-webkit-appearance:none;
}

#wallpaper{
	/*background-image: url(../images/fondo1.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;*/
	background: transparent;
	height: 400px;
}

.habilidad{
	width: 100%;
	background: #F1F1F1;
	border-radius:4px;
	padding: 2px;
}

.barra{
	height:18px;
	background:#09F;
	border-radius:4px;
	transition: background .4s ease-in;
}

.habilidad:hover .barra{
	background:#B1D32B;
	transition: background .4s ease-in;
}

.clearfix{
	clear:both;
}

.servicio{
	text-align: justify;
	padding-right: 10px;
}

.img-servicio{
	float:left;
	margin:7px 15px 0px 0px;
}

section ul li{
	margin-left:20px;
	line-height:26px
}

#home{
	background-color: #F5F6F7;
	min-height:400px;
}

#home .imagenes{
	height: 100%;
	float:left;
}

#home .flecha{
	margin-left: 117px;
	margin-right: 30px;
}

#introduccion h4{
	font-family: "OswaldBold", Arial;
	font-size: 26px;
	color: #333;
	text-align: justify;
}

#foto-perfil{
	border-radius: 50%;
	height: 200px;
	width: 200px;
	text-align: center;
	display: block;
}

#servicios{
	background:#F5F6F7;
}

#portafolio{
	height: 300px;
	position: relative;
	-webkit-transition: all 1s; /* Safari */
	transition: all 1s;
}

#portafolio.altura{
	height: auto;
}


#portafolio .ver-mas{
	bottom: 0;
	position: absolute;
	text-align: center;
	left: 0;
	right: 0;
	cursor: pointer;
}

#portafolio .ver-mas .btn{
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	background: #0099FF;
	border: 0px;
	-webkit-transition: all ease 0.8s;
	-moz-transition: all ease 0.8s;
	transition: all ease 0.8s;
}
#portafolio .ver-mas .btn:hover{
	background: #24A5D3;
}

#portafolio .proyecto{
	text-align: center;
	margin-bottom: 20px;
}

#portafolio .proyecto .titulo{
	font-family: "OswaldBold", Arial;
	font-size: 22px;
}

#portafolio .proyecto .imagen{
	overflow:hidden;
	cursor: pointer;
	margin: 4px;
	position: relative;
}

#portafolio .proyecto .imagen img{
	width: 90%;
	background-color: #CCC;
	padding: 3px;
	transition: background-color .4s ease-in;
	border: 1px solid #CCC;
}
#portafolio .proyecto .imagen img:hover{
	background-color: #FFF;
	border: 1px solid gray;
}

#portafolio .proyecto .descripcion{
	/*width:80%;*/
	/*margin: 10px auto 20px auto;*/
	width: 90%;
	margin: auto;
	padding: 45px 5px 0 5px;
	text-align: center;
	background: #1ABC9C;
	color: #FFF;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	position: absolute;
	opacity: 0;
	transition: opacity .4s ease-in;
	-webkit-transition: opacity .4s ease-in;
}

#portafolio .proyecto .descripcion:hover{
	opacity: 0.9;
}

#portafolio .proyecto .descripcion a{
	-webkit-transition: all ease 0.8s;
	-moz-transition: all ease 0.8s;
	transition: all ease 0.8s;
	height: 40px;
	line-height: 26px;
	border: 2px solid #FFF;
	color: #FFF;
	text-transform: uppercase;
	box-shadow: inset 0 0 0 0 #FFF;
}
#portafolio .proyecto .descripcion a:hover{
	box-shadow: inset 0 100px 0 0 #FFF;
	color: #333;
}

#contacto{
	background-color: #F1F1F1;
}


form.contacto{
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	text-align: justify;
}

.contacto input[type="text"],
.contacto input[type="tel"],
.contacto input[type="email"], 
.contacto textarea {
	display:block;
	background: #FFF;
	border:none;
	padding: 5px 5px 5px 20px;
	width:95%;
	margin-bottom: 10px;
	box-sizing: content-box;
}

.contacto input[type="text"],
.contacto input[type="tel"],
.contacto input[type="email"]{
	height: 30px;
}

.contacto .boton{
	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: 4px solid #238F7A;
	margin-bottom: 20px;
	background-color: #1ABC9C;
	color: #FFF;
	padding: 10px 20px;
	text-transform: uppercase;
	border-radius: 5px;
 	-webkit-transition: all .4s; /* Safari */
	transition: all .4s;
}
.contacto .boton:hover{
	border-color: #257061;
}

.separador {
    width: 100%;
    height: 1px;
    border-top: 1px solid #DDD;
    margin: 15px 0px 15px 9px;
    background: none repeat scroll 0% 0% #FFF;
}

.contacto-col2{
	margin-left:20px;
}

.contacto-col2 a{
	color:#333;
}

@media (max-width: 440px) { 
	body{
		padding-top:60px;
	}
	nav{
		height:60px;
	}
}