.item-hints
{
	display:block;
	position:relative;
}

.item-hints .hint
{
	width:60px;
	height:60px;
	position:absolute;
	display:flex;
	justify-content:center;
	align-items:center;
}

.item-hints .hint.hint1
{
	left:54%;
	top:10%;
}

.item-hints .hint.hint2
{
	left:38%;
	top:40%;
}

.item-hints .hint::before
{
	/* //rotated squre */
	background-color:#000;
	width: 8px;
	height: 8px;
	z-index: 2;
	-webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
	clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.item-hints .hint::after
{
	/* //green glow */
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 50%;
	width: 2px;
	height: 2px;
	z-index: 1;
	-webkit-box-shadow: 0 0 50px 30px rgba(243, 8, 8, 0.3);
	box-shadow: 0 0 50px 30px rgba(243, 8, 8, 0.3);
	-webkit-animation: home_hero_item_hints_glow 2scubic-bezier(0.25, 0.1, 0.2, 1) infinite;
	animation: home_hero_item_hints_glow 2s cubic-bezier(0.25, 0.1, 0.2, 1) infinite;
	-webkit-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
}
@-webkit-keyframes home_hero_item_hints_glow {
  0% {
    -webkit-box-shadow: 0 0 30px 5px #F30808;
    box-shadow: 0 0 30px 5px #F30808;
  }
  70% {
    -webkit-box-shadow: 0 0 70px 50px rgba(243, 8, 8, 0);
    box-shadow: 0 0 70px 50px rgba(243, 8, 8, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 50px rgba(243, 8, 8, 0);
    box-shadow: 0 0 0 50px rgba(243, 8, 8, 0);
  }
}
@keyframes home_hero_item_hints_glow {
  0% {
    -webkit-box-shadow: 0 0 30px 5px #F30808;
    box-shadow: 0 0 30px 5px #F30808;
  }
  70% {
    -webkit-box-shadow: 0 0 70px 50px rgba(243, 8, 8, 0);
    box-shadow: 0 0 70px 50px rgba(243, 8, 8, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 50px rgba(243, 8, 8, 0);
    box-shadow: 0 0 0 50px rgba(243, 8, 8, 0);
  }
}
.item-hints .hint-dot
{
	z-index: 3;
	border: 1px solid #000;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: block;
	-webkit-transform: translate(-0%, -0%) scale(0.95);
	transform: translate(-0%, -0%) scale(0.95);
	-webkit-animation: home_hero_item_hints_border 2s linear infinite;
	animation: home_hero_item_hints_border 2s linear infinite;
	margin: auto;
}
@-webkit-keyframes home_hero_item_hints_border {
  0%,
  100% {
    border-color: rgba(0, 0, 0, 0.6);
    -webkit-transform: translate(-50%, -50%) scale(0.95);
    transform: translate(-0%, -0%) scale(0.95);
  }
  50% {
    border-color: rgba(0, 0, 0, 0.3);
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-0%, -0%) scale(1);
  }
}
@keyframes home_hero_item_hints_border {
  0%,
  100% {
    border-color: rgba(0, 0, 0, 0.6);
    -webkit-transform: translate(-50%, -50%) scale(0.95);
    transform: translate(-0%, -0%) scale(0.95);
  }
  50% {
    border-color: rgba(0, 0, 0, 0.3);
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-0%, -0%) scale(1);
  }
}
.item-hints .hint-radius
{
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	width: 250px;
	height: 250px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -125px 0 0 -125px;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition-property: background-color, opacity, visibility,
	-webkit-transform;
	transition-property: background-color, opacity, visibility, -webkit-transform;
	transition-property: background-color, opacity, visibility, transform;
	transition-property: background-color, opacity, visibility, transform,
	-webkit-transform;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: ease, ease, ease,
	cubic-bezier(0.5, 0, 0, 1);
	transition-timing-function: ease, ease, ease, cubic-bezier(0.5, 0, 0, 1);
}

.item-hints .hint:hover .hint-radius
{
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.item-hints .hint[data-position="1"] .hint-content, .item-hints .hint[data-position="1"] .hint-content-right
{
	top: 85px;
	left:0%;
	margin-left:66px;
}

.item-hints .hint[data-position="1"] .hint-content-right
{
	margin-right:66px;
}

.item-hints .hint-content, .item-hints .hint-content-right
{
	color: #000;
	width: 300px;
	background-color:#F1F1F1;
	position: absolute;
	z-index: 5;
	padding:18px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.7s ease, visibility 0.7s ease;
	transition: opacity 0.7s ease, visibility 0.7s ease;
	pointer-events: none;
	visibility: hidden;
	pointer-events: none;
	text-align:left;
}

.item-hints .hint:hover .hint-content, .item-hints .hint:hover .hint-content-right
{
	color:#000;
	width: 300px;
	position: absolute;
	background-color:#F1F1F1;
	z-index: 5;
	padding:18px;
	opacity: 1;
	visibility: visible !important;
	-webkit-transition: opacity 0.7s ease, visibility 0.7s ease;
	transition: opacity 0.7s ease, visibility 0.7s ease;
	pointer-events: none;
	visibility: hidden;
	pointer-events: none;
	text-align:left;
}

.item-hints .hint-content::before
{
	
}

.item-hints .hint:hover .hint-content::before
{
	width:180px;
	transition: width 0.4s;
}

.item-hints .hint-content::after, .item-hints .hint-content-right::after
{
	-webkit-transform-origin: 0 50%;
	transform-origin:0% 50%;
	-webkit-transform: rotate(-215deg);
	transform: rotate(-215deg);
	top:37%;
	left:0px;
	width:0px;
	content: "";
	background-color:#D9D9D9;
	height: 1px;
	position: absolute;
	opacity: 1;
	-webkit-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
	transition-delay: 0s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

.item-hints .hint-content-right::after
{
	-webkit-transform-origin: 0 0%;
	transform-origin:0% 0%;
	-webkit-transform: rotate(215deg);
	transform: rotate(215deg);
	top:80px;
	left:365px;
}

.item-hints .hint:hover .hint-content::after, .item-hints .hint:hover .hint-content-right::after
{
	opacity: 1;
	width:80px;
	transition: width 0.4s;
	visibility: visible;
}

.item-hints .hint[data-position="4"] .hint-content
{
	bottom:5px;
	left: 50%;
	margin-left:66px;
}

.item-hints .hint[data-position="4"] .hint-content-right
{
	bottom:50px;
	right:0%;
	margin-right:96px;
}

@media (max-width:768px)
{
	.item-hints .hint.hint1
	{
		left:12%;
		top:10%;
	}
	
	.item-hints .hint.hint2
	{
		left:70%;
		top:75%;
	}
	
	.item-hints .hint-content, .item-hints .hint-content-right
	{
		width:200px;
		padding:10px;
	}
	
	.item-hints .hint:hover .hint-content, .item-hints .hint:hover .hint-content-right
	{
		width:200px;
		padding:10px;
	}
	
	.item-hints .hint-radius
	{
		width: 150px;
		height: 150px;
		margin: -75px 0 0 -75px;
	}
	
	.item-hints .hint[data-position="4"] .hint-content
	{
		bottom:auto;
	}
	
	.item-hints .hint-content::after, .item-hints .hint-content-right::after, .item-hints .hint-content-right::after
	{
		display:none;
	}
}

@media only screen and (max-width:480px)
{
	.item-hints .hint.hint1
	{
		left:12%;
		top:10%;
	}
	
	.item-hints .hint.hint2
	{
		left:70%;
		top:75%;
	}
	
	.item-hints .hint-content, .item-hints .hint-content-right
	{
		width:200px;
		padding:10px;
	}
	
	.item-hints .hint:hover .hint-content, .item-hints .hint:hover .hint-content-right
	{
		width:200px;
		padding:10px;
	}
	
	.item-hints .hint-radius
	{
		width: 150px;
		height: 150px;
		margin: -75px 0 0 -75px;
	}
	
	.item-hints .hint[data-position="4"] .hint-content
	{
		bottom:auto;
	}
	
	.item-hints .hint-content::after, .item-hints .hint-content-right::after, .item-hints .hint-content-right::after
	{
		display:none;
	}
}