.iconlink {
	text-align: center;
}
.iconlink a {
	text-decoration: none;
}
.iconlink:hover a {
	text-decoration: underline;
}

.iconlink .name {
	margin-bottom: 0px;
	font-size: 24px;
}
.iconlink .icon {
	position: relative;
	width: 128px;
	height: 128px;
	margin: auto;
	margin-bottom: 10px;
	cursor: pointer;
}
.iconlink .icon .image {
	position: absolute;
	top: 0;
	left: 0;
	z-index:2;
	transition: all 0.3s ease 0s;
	opacity: 1;
}
.iconlink .icon .text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index:1;
	border-radius: 50%;
	background-color: #f29733;
	padding: 20px;
	overflow: hidden;
	text-align: center;
	color: #FFFFFF;
}

.iconlink .icon .text-wrap {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.iconlink .icon .text-wrap p {
	font-size: 1em;
	line-height: 1.4285;
	margin: 0;
}
.iconlink .icon:hover .image {
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease 0s;
}
.iconlink .icon.hover .image {
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease 0s;
}

