#wrapper-infograpich {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	max-width: 650px;
	position: relative;
}
#infograpich {
    position: relative;
    display: flex;
    width: 100%;
    margin: 0 auto;
	padding-bottom: 100%;
}
#infograpich .circular-item {
	position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    transition: all .5s;
}
#infograpich img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
	transform-origin: 50% 50%;
	transition: all .5s; 
}
#infograpich #connecting > img {
	left: -2%;
}
#infograpich #blockchain {
	width: 80%;
	height: 80%;
}
#infograpich #applications {
	width: 80%;
	height: 80%;
}
#infograpich #ecosystem {
	width: 70%;
	height: 70%;
}
.relative {
	position: relative;
}
.scale-up {
	transform: scale(1.05);
}
.info-tooltip {
	visibility: hidden;
	background: #262463;
	position: relative;
	z-index: 100;
	border-radius: 10px;
	padding:20px;
	color: #fff;
	position: absolute;
	transition: all .5s;
	opacity: 0;
	font-family: sans-serif;
	min-width: 280px;
	left: 50%;
	font-size: 14px;
	transform: translateX(-50%);
	top: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.info-tooltip::after {
	content: '';
	transform: rotate(45deg);
	background: #262463;
	border-radius: 4px;
	width: 20px;
	height: 20px;
	position: absolute;
	top: -5px;
	left: 50%;
	margin-left: -10px;
	display: block;
	z-index: -1;
}
.info-tooltip[data-tooltip="ecosystem"] {
	top: 50%;
}
.info-tooltip p:last-child {
	margin-bottom: 0;
}
