/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v2.0.0
* Docs at http://ramseyinhouse.github.io/scut
*/
.sn_grid_news__list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.sn_grid_news__i {
  opacity: 0;
  transform: translate3d(0, 2.5rem, 0);
  transition: all 1s ease;
}
.sn_grid_news__i.__in {
  transform: none;
  opacity: 1;
}
@media only screen and (min-width: 62em) {
  .sn_grid_news__i:nth-of-type(3n + 2) {
    transition-delay: 0.2s;
  }
}
@media only screen and (min-width: 62em) {
  .sn_grid_news__i:nth-of-type(3n + 3) {
    transition-delay: 0.4s;
  }
}