@media screen and (min-width : 991px) {
  .mn-move-up {
    position: relative;
    will-change: transform;
    transform: translateY(100px);
  }

  .mn-move-up-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
  }

  .mn-animate-zoom-focus {
    position: relative;
    transform-origin: center center;
    transform: scale(0.97);
  }

  .mn-hover-card-scale-up {
      transform: scale(1);
      transition: all 200ms ease-in-out;
  }

  .mn-hover-card-scale-up:hover {
      transform: scale(1.05);
      transition: all 200ms ease-in-out;
  }
}

.mn-hover-scale-up {
  transform: scale(1);
  transition: all 200ms ease-in-out;  
}

.mn-hover-scale-up:hover {
  transform: scale(1.05);
  transition: all 200ms ease-in-out;
}

.mn-avatar-zoom {
    transform: scale(1);
    transition: all 200ms ease-in-out;
}

.mn-avatar-zoom:hover {
    transform: scale(1.05);
    transition: all 200ms ease-in-out;  
}
