.videoBlock {
  margin: 100px 0;
  position: relative;
}
.videoBlock .videoWrapper {
  position: relative;
  height: 420px;
  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.45s 0.3s, transform 0.45s 0.3s;
  -moz-transition: opacity 0.45s 0.3s, transform 0.45s 0.3s;
  -ms-transition: opacity 0.45s 0.3s, transform 0.45s 0.3s;
  -o-transition: opacity 0.45s 0.3s, transform 0.45s 0.3s;
  transition: opacity 0.45s 0.3s, transform 0.45s 0.3s;
}
.videoBlock .videoWrapper.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  pointer-events: all;
}
.videoBlock .videoWrapper .backgroundImage {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.videoBlock .videoWrapper .backgroundImage:after {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background: #474543;
  opacity: 0.1;
}
.videoBlock .videoWrapper .stars .star {
  height: 65px;
  left: 0;
  position: absolute;
  top: 0;
  width: 65px;
}
.videoBlock .videoWrapper .stars .star:first-child {
  top: 170px;
  left: 65px;
}
.videoBlock .videoWrapper .stars .star:nth-child(2) {
  width: 40px;
  height: 40px;
  left: 275px;
  top: -15px;
}
.videoBlock .videoWrapper .stars .star:nth-child(2) svg {
  -webkit-transition: opacity 0.45s 0.6s, transform 0.45s 0.6s;
  -moz-transition: opacity 0.45s 0.6s, transform 0.45s 0.6s;
  -ms-transition: opacity 0.45s 0.6s, transform 0.45s 0.6s;
  -o-transition: opacity 0.45s 0.6s, transform 0.45s 0.6s;
  transition: opacity 0.45s 0.6s, transform 0.45s 0.6s;
}
.videoBlock .videoWrapper .stars .star:nth-child(3) {
  width: 40px;
  height: 40px;
  left: auto;
  right: 275px;
  top: auto;
  bottom: 20px;
}
.videoBlock .videoWrapper .stars .star:nth-child(3) svg {
  -webkit-transition: opacity 0.45s 0.6s, transform 0.45s 0.6s;
  -moz-transition: opacity 0.45s 0.6s, transform 0.45s 0.6s;
  -ms-transition: opacity 0.45s 0.6s, transform 0.45s 0.6s;
  -o-transition: opacity 0.45s 0.6s, transform 0.45s 0.6s;
  transition: opacity 0.45s 0.6s, transform 0.45s 0.6s;
}
@media all and (max-width: 767px) {
  .videoBlock {
    margin: 50px 0;
  }
  .videoBlock .videoWrapper {
    height: 300px;
  }
  .videoBlock .videoWrapper .stars {
    display: none;
  }
}
/*# sourceMappingURL=video_block.css.map */