body {
  background: #ccae62;
}

a {
  text-decoration: none;
}

.clear:after {
  content: " ";
  display: block;
  clear: both;
}

.menu {
  margin-top: 50px;
  text-align: center;
}

.menu ul {
  list-style-type: none;
  display: inline-block;
}

.menu ul li {
  float: left;
  width: 124px;
  height: 140px;
  border-color: #e3e3e3;
  background-color: #fff;
  transition: background-color 0.2s linear 0s;
}
.menu ul li:first-child {border-radius: 25px 0 0 25px;}
.menu ul li:last-child {border-radius: 0 25px 25px 0;}

.menu ul li a {
  display: table;
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
}

.menu a i {
  display: table-cell;
  vertical-align: middle;
  color: #3cd66d;
  font-size: 23px;
  transition: all 0.2s linear 0s;
}

.menu a i:before {
  border: 2px solid;
  border-color: #006266;
  border-radius: 500px;
  width: 41px;
  display: inline-block;
  height: 41px;
  line-height: 37px;
  transition: color 0.2s linear 0s, 
  font-size 0.2s linear 0s, 
  border-color 0.2s linear 0.2s, 
  height 0.2s linear 0s, 
  width 0.2s linear 0s, 
  line-height 0.2s linear 0s;
}

.menu a .link-text {
  position: absolute;
  bottom: 13px;
  right: 10px;
  color: #ffa801;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.2s linear 0s;
}

.menu ul li:hover {
  background-color: #006266;
}

.menu ul li:hover .link-text {
  opacity: 0;
}

.menu ul li:hover i {
  color: #ffa801;
  font-size: 43px;
}

.menu ul li:hover i:before {
  border-color: transparent;
  border-radius: 500px;
  width: 66px;
  height: 66px;
  line-height: 60px;
  transition: color 0.2s linear 0s, 
  font-size 0.2s linear 0s, 
  border-color 0.2s linear 0s, 
  height 0.2s linear 0s, 
  width 0.2s linear 0s, 
  line-height 0.2s linear 0s;
}