@keyframes scroll_down_animation {
	0% {
		transform: scale(1);
	}
	40% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}
@-webkit-keyframes scroll_down_animation {
	0% {
		transform: scale(1);
	}
	40% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}
.slider-scroll-down > i {
	animation: 2s ease 0s normal none infinite running scroll_down_animation;
}
