/* CSS Document */

/* --------------------------------------------------------------------------------------------------------------- *\
    #KEY FEATURES
\* --------------------------------------------------------------------------------------------------------------- */
.features__item {
  text-align: center;
}
.features__icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #333333;
  text-align: center;
  overflow: hidden;
}
.features__icon > i {
  position: relative;
  display: block;
  line-height: 120px;
  font-size: 60px;
  color: white;
  transform: translateZ(0px);
}

.features__title {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 300;
}
/* Icons animation */

/*
@media (min-width: 768px) {
  .features-icon_enter {
    -webkit-animation: features-icon_enter 0.6s 1 forwards;
    -o-animation: features-icon_enter 0.6s 1 forwards;
    animation: features-icon_enter 0.6s 1 forwards;
  }
  .features-icon_leave {
    -webkit-animation: features-icon_leave 0.6s 1 forwards;
    -o-animation: features-icon_leave 0.6s 1 forwards;
    animation: features-icon_leave 0.6s 1 forwards;
  }
}

*/

/* Media definitions pulled out from media queries to make it work in IE 10+ **/

/*
@-webkit-keyframes features-icon_enter {
  0% {
    top: 0;
  }
  50% {
    top: -65px;
  }
  100% {
    top: -60px;
  }
}
@keyframes features-icon_enter {
  0% {
    top: 0;
  }
  50% {
    top: -65px;
  }
  100% {
    top: -60px;
  }
}
@-webkit-keyframes features-icon_leave {
  0% {
    top: -60px;
  }
  50% {
    top: -65px;
  }
  100% {
    top: 0;
  }
}
@keyframes features-icon_leave {
  0% {
    top: -60px;
  }
  50% {
    top: -65px;
  }
  100% {
    top: 0;
  }
}
*/
@media (max-width: 767px) {
  .features__item {
    text-align: left;
    margin-bottom: 20px;
  }
  .features__item:hover .features__icon > i {
    color: #9cc06b
  }
  .features__icon,
  .features__title {
    display: inline-block;
  }
  .features__icon {
    width: 30px;
    height: 30px;
    margin: 0 10px -5px 0;
  }
  .features__icon > i {
    line-height: 30px;
    font-size: 14px;
  }
  .features__icon > i:last-child {
    display: none;
  }
  .features__title {
    margin-bottom: 15px;
    font-size: 18px;
  }
}

