/*begin - slide effect on home page*/
.new-features-item,
.BtUk_Ww-item,
.BtUk_Ww-text,
.BtUk_Ww h1,
.promo-poster,
.promo-poster-title,
.promo-poster-description {
 	opacity:0;
}

.come-in {
  
  transform:translate3d(0,50px,0);
  -ms-transform: translate3d(0,50px,0);
  -webkit-transform: translate3d(0,50px,0);
  -moz-transform: translate3d(0,50px,0);
  -o-transform: translate3d(0,50px,0);
  
  -moz-animation: come-in 0.6s ease forwards;
  -webkit-animation: come-in 0.6s ease forwards;
  -o-animation: come-in 0.6s ease forwards; 
  animation: come-in 0.6s ease forwards;
}

.come-in:nth-child(1) {
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
}
.come-in:nth-child(2) {
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
}
.come-in:nth-child(3) {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
}

.BtUk_Ww-item.come-in:nth-child(2) {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
}
.BtUk_Ww-item.come-in:nth-child(3) {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}
.BtUk_Ww-item.come-in:nth-child(4) {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
}
.BtUk_Ww-item.come-in:nth-child(5) {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
}
.BtUk_Ww-item.come-in:nth-child(6) {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}




.promo-poster {
	transform:translate3d(0,80px,0);
	 -ms-transform: translate3d(0,80px,0);
	-webkit-transform: translate3d(0,80px,0);
	-moz-transform: translate3d(0,80px,0);
	-o-transform: translate3d(0,80px,0);

  
	animation-delay: 0.6s;
	-webkit-animation-delay: 0.6s;
}

.promo-poster-title {
	transform:translate3d(0,80px,0);
	 -ms-transform: translate3d(0,80px,0);
	-webkit-transform: translate3d(0,80px,0);
	-moz-transform: translate3d(0,80px,0);
	-o-transform: translate3d(0,80px,0);
	animation-delay: 0.6s;
	-webkit-animation-delay: 0.6s;
}

.promo-poster-description {
	transform:translate3d(0,80px,0);
	 -ms-transform: translate3d(0,80px,0);
	-webkit-transform: translate3d(0,80px,0);
	-moz-transform: translate3d(0,80px,0);
	-o-transform: translate3d(0,80px,0);
	animation-delay: 0.6s;
	-webkit-animation-delay: 0.6s;
}


.already-visible {
	transform:translate3d(0,0,0);
	 -ms-transform: translate3d(0,0,0);
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	
	animation: none;
	-moz-animation: none;
  -webkit-animation: none;
  -o-animation: none;
	opacity:1;
}

@keyframes come-in {
  to {
	opacity: .99;
	transform:translate3d(0,0,0);
	 -ms-transform: translate3d(0,0,0);
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	
  }
  
}
@-webkit-keyframes come-in{
  to {
	opacity: 1;
	transform:translate3d(0,0,0);
	 -ms-transform: translate3d(0,0,0);
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	
  }
  
}

/*end - slide effect on home page*/