.contenedor-card{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.contenedor-card .box{
	position: relative;
	width: 350px;
	padding: 40px;
	background: #fff;
	box-shadow: 0 5px 15px rgba(0,0,0,.1);
	border-radius: 4px;
	margin: 5px;
	box-sizing: border-box;
	overflow: hidden;
	text-align: center;
}



.contenedor-card .box .icon{
	position: relative;
	width: 68px;
	height: 68px;
	color: #fff;
	background: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	border-radius: 50%;
	font-size: 40px;
	font-weight: 700;
	transition: 1s;
}

.contenedor-card .box:nth-child(1) .icon{
	box-shadow: 0 0 0 0 #2196f3;
	background: #2196f3;
}

.contenedor-card .box:nth-child(1):hover .icon{
	box-shadow: 0 0 0 400px #2196f3;
}

.contenedor-card .box:nth-child(2) .icon{
	box-shadow: 0 0 0 0 #2196f3;
	background: #2196f3;
}

.contenedor-card .box:nth-child(2):hover .icon{
	box-shadow: 0 0 0 400px #2196f3;
}

.contenedor-card .box:nth-child(3) .icon{
	box-shadow: 0 0 0 0 #2196f3;
	background: #2196f3;
}

.contenedor-card .box:nth-child(3):hover .icon{
	box-shadow: 0 0 0 400px #2196f3;
}

.contenedor-card .box:nth-child(4) .icon{
	box-shadow: 0 0 0 0 #2196f3;
	background: #2196f3;
}

.contenedor-card .box:nth-child(4):hover .icon{
	box-shadow: 0 0 0 400px #2196f3;
}

.contenedor-card .box:nth-child(5) .icon{
	box-shadow: 0 0 0 0 #2196f3;
	background: #2196f3;
}

.contenedor-card .box:nth-child(5):hover .icon{
	box-shadow: 0 0 0 400px #2196f3;
}

.contenedor-card .box:nth-child(6) .icon{
	box-shadow: 0 0 0 0 #2196f3;
	background: #2196f3;
}

.contenedor-card .box:nth-child(6):hover .icon{
	box-shadow: 0 0 0 400px #2196f3;
}

.contenedor-card .box .content{
	position: relative;
	z-index: 1;
	transition: 0.5s;
	text-align:center;
}

.contenedor-card .box:hover .content{
	color: #fff;
}

.contenedor-card .box .content h3{
	font-size: 20px;
	margin: 10px 0;
	padding: 0;
	text-align:center;
	font-weight:bold;
}

.contenedor-card .box .content p{
	margin: 0;
	padding: 0;
	text-align:justify;
}

.contenedor-card .box .content a{
	display: inline-block;
	padding: 10px 20px;
	background: #fff;
	border-radius: 4px;
	text-decoration: none;
	color: #000;
	font-weight: 500;
	margin-top: 20px;
	box-shadow: 0 2px 5px rgba(0,0,0,.2);
}