/* [1] */
/* [2] */
/* [3] */
/* [4] */
/* [5] */
/* [6] */
/* Styles: */
.icon {
  position: relative;
  border:2px solid #FFF;
  cursor: pointer;
  margin: auto;
  color: #000;
  border-radius: 50%;
  height: 250px;
  width: 250px;
  line-height: 46px;
  text-align: center;
  font-size: 1.75em;
  font-weight: bold;
  transition: 0.24s 0.2s;
  box-sizing:border-box;
	font-family:Lato;
	font-weight:bold;
	padding-top:80px;
}


.menu {
  position: absolute;
  top: -200px;
  left: -200px;
  border: 250px solid transparent;
  cursor: default;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 1.4s 0.07s;
  z-index: -5;
}

.spread {
  position: absolute;
  top: -75px;
  left: -75px;
  transform-origin: 150px 150px;
  transition: all 0.5s 0.1s;
}


.icon:hover {
  /* Where all the MAGIC happens: */
}
.icon:hover .menu {
  transition: transform 0.4s 0.08s, z-index   0s  0.5s;
  transform: scale(1);
  z-index: 5;
}
.icon:hover .spread, .icon:hover .unit {
  transition: all 0.6s;
}
.icon:hover .spread:nth-child(1) {
  transition-delay: 0.02s;
  transform: rotate(15deg);
}
.icon:hover .spread:nth-child(1) .unit {
  transition-delay: 0.04s;
  transform: rotate(705deg);
}
.icon:hover .spread:nth-child(2) {
  transition-delay: 0.04s;
  transform: rotate(75deg);
}
.icon:hover .spread:nth-child(2) .unit {
  transition-delay: 0.08s;
  transform: rotate(645deg);
}
.icon:hover .spread:nth-child(3) {
  transition-delay: 0.06s;
  transform: rotate(135deg);
}
.icon:hover .spread:nth-child(3) .unit {
  transition-delay: 0.12s;
  transform: rotate(585deg);
}
.icon:hover .spread:nth-child(4) {
  transition-delay: 0.08s;
  transform: rotate(195deg);
}
.icon:hover .spread:nth-child(4) .unit {
  transition-delay: 0.16s;
  transform: rotate(525deg);
}
.icon:hover .spread:nth-child(5) {
  transition-delay: 0.1s;
  transform: rotate(255deg);
}
.icon:hover .spread:nth-child(5) .unit {
  transition-delay: 0.2s;
  transform: rotate(465deg);
}
.icon:hover .spread:nth-child(6) {
  transition-delay: 0.12s;
  transform: rotate(315deg);
}
.icon:hover .spread:nth-child(6) .unit {
  transition-delay: 0.24s;
  transform: rotate(405deg);
}

/* END .icon:hover */
.unit {
  position: absolute;
  background: #FFF;
  box-sizing:border-box;
  font-size: 60%;
  text-decoration: none;
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: dodgerblue;
  border-radius: 50%;
  transition: 0.6s;
}
.unit img{
	width:50%;
	position: absolute;
  top: 25%;
  left: 25%;
}
/* Just CodePen layout stuff: */
body, a, ul, li {
  margin: 0;
  outline: 0;
  padding: 0;
  list-style: none;
}

html, body {
  height: 100%;
}

body {
  font-family: sans-serif;
}

.icon {
  top: 50%;
  margin-top: 0;
}
.inner {
  transform: translate3d(0, 0, 0);
	padding:100px 0;
	position:relative;
}
