.contenedorTablaS {
	width: 90%;
	max-width: 800px;
	margin: auto;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.tabla {
	width: 33%;
	height: 550px;
	margin: auto;
	border: 1px solid #008ac5;
	border-radius: 4px;
	box-shadow: 0px 0px 4px 0px #008ac5;
	padding: 60px;
	text-align: center;
	flex-grow: 1;
	color: #343759;
	background: #f1f1f1f1;
}

.tabla > h3 {
	display: block;
	font-size: 30px;
	margin-bottom: 25px;
}

.tabla img {
	width: 64px;
	margin-bottom: 25px;
}

.tabla > h4 {
	font-size: 30px;
	margin-bottom: 20px;
}

.boton {
	display: inline-block;
	width: 150px;
	padding: 12px;
	background: #009045;
	text-decoration: none;
	color: #343759;
	border-radius: 100px;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	margin: auto;
}

.tabla:hover {
	background: #343759;
	color: #f1f1f1f1;
	transition: 0.5s all;
	transform: scale(1.1);
	cursor: pointer;
}

.boton:hover {
	color: #f1f1f1f1;
	background: #a5f059;
}
