/* gear css */

.gear{
  animation-name: ckw;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
  display: inline-block;
  animation-timing-function: linear;
}
#gear2{
  animation-name: ccw;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
  display: inline-block;
  animation-timing-function: linear;
  top: 100px;
  position: absolute;
  top: 70px;
  left: 50px;
}
@keyframes ckw {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}
@keyframes ccw {
  0% {
      transform: rotate(360deg);
  }
  100% {
      transform: rotate(0deg);
  }
}

.work-icons img {
  max-width: 40%;
  height: auto;
  padding-top:20px;
  padding-bottom:20px;
}

/* BuddyPress / Youzify */

@media only screen and (min-width: 768px) {
  #main #youzify-groups-list .action {
       min-height: 230px;
  }
}

.youzify-group-navmenu a#groups:before {
  content: '\f2bd';
}
