.benefitDes p{
	cursor: pointer;
}
.benefitDes p[data-title]:hover {
	position: relative;
}
.benefitDes p[data-title]:hover:before {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 11;
	content: attr(data-title);
	margin-top: 0.5em;
	padding: 0.5em;
	width: auto;    /* change it */
	overflow: hidden;
	word-wrap: break-word;
	font-size: inherit;
	color: #000000;
	text-align: center;
	background-color: #ffffff;
	box-sizing: border-box;
	box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}