/* animation */
.animation-1{
	opacity: 0;
	-webkit-transform: translate(0, 40px);
	-ms-transform: translate(0, 40px);
	transform: translate(0, 40px);
	-webkit-transition: all 800ms;
	transition: all 800ms;
	}
.animation-1.animation-delay{
	transition-delay: .7s;
	}
.animation-1.scrollin {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
	}

.animation-zoomin{
	overflow: hidden;
	}
.animation-zoomin img{
	-webkit-transition: all 700ms;
	transition: all 700ms;
	transform: scale(1.2);
	}
.animation-zoomin.animation-delay img{
	transition-delay: .7s;
	}
.animation-zoomin.scrollin img {
	transform: scale(1);
	}
	
.animation-cover{
	position: relative;
	}
.animation-cover::after{
	content: '';
	width: 100%;
	height: 100%;
	background: #EAEAEA;
	position: absolute;
	top: 0;
	right: 0;
	-webkit-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
	-o-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
	-webkit-transition-delay: 0.6s;
	-o-transition-delay: 0.6s;
	transition-delay: 0.6s;
	}
.animation-cover.scrollin::after{
	width: 0%;
	}