.content
{
	width: 80%;
	max-width: 1200px;
	position: relative;
    margin: 0px auto;
}

.content img
{
	width: 100%;
}

.hotspot
{
	width: 13%;
	height: 11%;
	background-color: transparent;
	border-radius: 50%;
	position: absolute;
	cursor: pointer;
}

.Felicidad
{
	right: 14.8%;
	top: 42.3%;
}

.Enfocados
{
	top: 44%;
	left: 20.4%;
}

.Amor
{
	top: 16.3%;
	left: 39.8%;
}

.Relaciones
{
	right: 29%;
	bottom: 25.3%;
}

.Cultura
{
	left: 6.5%;
	bottom: 23%;
}

@keyframes wave
{
	from
	{
		box-shadow:  0 0 0 0 #dfdfdf;
	}
	to
	{
		box-shadow:  0 0 0 10px #dfdfdf;	
	}
}

.hotspot::before
{
	content: attr(text);
	width: max-content;
	max-width: 200px;
	position: absolute;
	background-color: #F5EFEB;
	color: #222222;
	transform:  translateX(-50%);
	top: 30px;
	left: 50%;
	padding: 8px 20px;
	font-size: 14px;
	border-radius: 3px;
	display: none;
}

.hotspot::after
{
	content: "";
	border-color: transparent transparent #F5EFEB;
	border-width: 0 8px 6px;
	border-style: solid;
	position: absolute;
	top: 24px;
	left: 50%;
	transform: translateX(-50%);
	display: none;
}

.hotspot:hover::before, .hotspot:hover::after
{
	display: block;
	transition: 0.3s;
}