table.box-service{
	float:left;
	width:calc(33% - 60px) !important;
	padding: 20px 30px;
	margin:30px;
	text-align:center;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0px 2px 25px 0px rgb(110, 110, 110, 0.12);
	transition: all 400ms ease-out;
}
table.box-service.one-row{
	width:calc(100% - 60px) !important;
}
table.box-service.two-row{
	width:calc(50% - 60px) !important;
}
table.box-service.three-row{
	width:calc(33% - 60px) !important;
}
table.box-service.four-row{
	width:calc(25% - 60px) !important;
}

table.box-service *{
	transition: all 400ms ease-out;
}
table.box-service td{
	padding: 10px 0;
}

table.box-service tr:nth-child(2) td{
	font-weight:bold;
	font-size:18px;
}
table.box-service tr:nth-child(3) td{
	font-size:15px;
	line-height:1.8;
	color: #5f5f5f;
}

table.box-service svg{
	width: 80px;
	padding: 20px;
	border-radius:50%;
	background: rgb(215, 215, 215, 0.17);
	fill: var(--cor-secundaria);
}

table.box-service a{
	color: var(--cor-secundaria);
	text-decoration: underline;
	text-transform: capitalize;
}

table.box-service:hover{
	background-color: var(--cor-principal);
	color: white;
}
table.box-service:hover svg{
	background-color: white;
}
table.box-service:hover *{
	color: white !important;
}