/*titulo*/

div.contenedor{
	width: 200px;
	height: 230px;
	float:left;
    margin:0px 63px;
	-webkit-transition: height .4s;
}

div#uno{
	background-color: rgb(21,132,203);
}

div#dos{

	background-color: rgb(70,197,193);
}

div#tres{
	background-color: rgb(0,159,253);
}

div#cuatro{
	background-color: rgb(22,107,162);
}

div#cinco{
	background-color: rgb(27,54,71);
}

div#seis{
	background-color: rgb(21,40,54);
}

img.icon{
	display: block;
	margin:40px auto;
	background-color: rgba(255,255,255,.20);
	width:85px;
	-webkit-border-radius: 15%;
	-webkit-box-shadow: 0px 0px 0px 50px rgba(255,255,255,0);
	-webkit-transition:box-shadow .4s;
}

p.texto{
	font-size: 1.2em;
	color:#FF3;
	text-align: center;
	padding-top:10px;
	/* opacity: .5; */
	-webkit-transition: padding-top .4s;
}

div.contenedor:hover{
	height:250px;
}

div.contenedor:hover p.texto{
	padding-top: 30px;
	opacity: 1;
	font-size: 1.3em;
	color:white;
}

div.contenedor:hover img.icon{
	-webkit-box-shadow:0px 0px 0px 0px rgba(255,255,255,.2);
}










































































