/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 24 2025 | 16:38:53 */
.arrow img {
	height: auto !important;
	width: 8vw !important;
	position: absolute;
	top: 40vh;
	left: 5vw;
	z-index: 3;
	animation: bounce 3s -1s infinite ease-in-out;
}
@media only screen and (max-width: 700px) {
	.arrow img {
		left: auto;
		top: 50vh;
		right: 44vw;
		height: 200px !important;
		width: auto !important;
	}
}
@keyframes bounce {
	0% {
		transform: translate(0, 20px);
	}
	50% {
		transform: translate(0, -20px);
	}
	100% {
		transform: translate(0, 20px);
	}
}
