.newsItem {
  display: inline-block;
  vertical-align: top;
  width: calc(33.3333% - 20px);
  margin: 0 10px;
  color: #474543;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -o-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  pointer-events: none;
  -webkit-transition: opacity 0.6s 0.3s, transform 0.6s 0.3s, pointer-events 0.6s 0.3s, color 0.3s 0s;
  -moz-transition: opacity 0.6s 0.3s, transform 0.6s 0.3s, pointer-events 0.6s 0.3s, color 0.3s 0s;
  -ms-transition: opacity 0.6s 0.3s, transform 0.6s 0.3s, pointer-events 0.6s 0.3s, color 0.3s 0s;
  -o-transition: opacity 0.6s 0.3s, transform 0.6s 0.3s, pointer-events 0.6s 0.3s, color 0.3s 0s;
  transition: opacity 0.6s 0.3s, transform 0.6s 0.3s, pointer-events 0.6s 0.3s, color 0.3s 0s;
}
.newsItem:nth-child(3n + 2) {
  -webkit-transition: opacity 0.6s 0.45s, transform 0.6s 0.45s, pointer-events 0.6s 0.45s, color 0.3s 0s;
  -moz-transition: opacity 0.6s 0.45s, transform 0.6s 0.45s, pointer-events 0.6s 0.45s, color 0.3s 0s;
  -ms-transition: opacity 0.6s 0.45s, transform 0.6s 0.45s, pointer-events 0.6s 0.45s, color 0.3s 0s;
  -o-transition: opacity 0.6s 0.45s, transform 0.6s 0.45s, pointer-events 0.6s 0.45s, color 0.3s 0s;
  transition: opacity 0.6s 0.45s, transform 0.6s 0.45s, pointer-events 0.6s 0.45s, color 0.3s 0s;
}
.newsItem:nth-child(3n + 3) {
  -webkit-transition: opacity 0.6s 0.6s, transform 0.6s 0.6s, pointer-events 0.6s 0.6s, color 0.3s 0s;
  -moz-transition: opacity 0.6s 0.6s, transform 0.6s 0.6s, pointer-events 0.6s 0.6s, color 0.3s 0s;
  -ms-transition: opacity 0.6s 0.6s, transform 0.6s 0.6s, pointer-events 0.6s 0.6s, color 0.3s 0s;
  -o-transition: opacity 0.6s 0.6s, transform 0.6s 0.6s, pointer-events 0.6s 0.6s, color 0.3s 0s;
  transition: opacity 0.6s 0.6s, transform 0.6s 0.6s, pointer-events 0.6s 0.6s, color 0.3s 0s;
}
.newsItem.is-inview {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.newsItem:hover .image .imageWrapper {
  -webkit-transform: translate3d(0, 0, 0) scale(1.11);
  -moz-transform: translate3d(0, 0, 0) scale(1.11);
  -o-transform: translate3d(0, 0, 0) scale(1.11);
  -ms-transform: translate3d(0, 0, 0) scale(1.11);
  transform: translate3d(0, 0, 0) scale(1.11);
}
.newsItem:hover .itemContent .textLink:after {
  width: 100%;
  left: 0;
  right: auto;
}
.newsItem:hover .itemContent .textLink i {
  margin-left: 10px;
}
.newsItem.light {
  color: #FCECE3;
}
.newsItem.light .itemContent .text {
  color: #FAD7BE;
}
.newsItem .image {
  display: block;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}
.newsItem .image .imageWrapper {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  -moz-transform: translate3d(0, 0, 0) scale(1);
  -o-transform: translate3d(0, 0, 0) scale(1);
  -ms-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.newsItem .itemContent {
  display: block;
  padding: 30px 20px;
  padding-bottom: 0;
}
.newsItem .itemContent .smallTitle {
  display: block;
  height: 70px;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newsItem .itemContent .text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 20px;
  color: #474543;
}
@media all and (max-width: 1024px) {
  .newsItem {
    width: calc(50% - 20px);
  }
  .newsItem .itemContent {
    display: block;
    padding: 10px 0;
  }
  .newsItem .itemContent .smallTitle {
    height: 70px;
  }
}
@media all and (max-width: 767px) {
  .newsItem {
    width: calc(50% - 20px);
    margin: 0 10px;
  }
  .newsItem .itemContent .smallTitle {
    height: 60px;
  }
}
@media all and (max-width: 450px) {
  .newsItem {
    width: calc(100% - 20px);
    margin-top: 20px;
  }
  .newsItem:first-child {
    margin-top: 0;
  }
}
/*# sourceMappingURL=partial.css.map */