.tf-iconbox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.tf-iconbox .icon-box {
    width: 96px;
    height: 96px;
    border-radius: 999px;
    background: #34CCFF;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.tf-iconbox:hover .icon-box i,
.tf-iconbox:hover .icon-box svg {
    transform: rotateY(180deg);
}
.tf-iconbox .icon-box i,
.tf-iconbox .icon-box svg {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.tf-iconbox .icon-box i {
    color: #fff;
}
.tf-iconbox .icon-box svg path {
    fill: #fff;
}
.tf-iconbox .title {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0px;
    vertical-align: middle;
    padding-left: 24px;
    position: relative;
}
.tf-iconbox .title a{
    position: relative;
}
.tf-iconbox .title a::before {
  height: 1px;
  background: #34ccff;
  bottom: 0;
  z-index: 1;
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  width: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.3s ease;
}

.tf-iconbox .title a:hover:before {
  width: 100%;
  left: 0;
}