#arrowdiv {
	display: flex;
	justify-content: center;
	align-items: center;
	/*height: 100vh;*/
	background-color: #ffffff;
	flex-direction: column;
}

.arrow-container1 {
	display: flex;
	flex-direction: column;
	gap: 0px;
	align-items: center;
	/*padding-top:2%;*/
}

.arrow1 {
	width: 55px;
	height: 55px;
	border-right: 10px solid #219c24;
	border-bottom: 10px solid #219c24;
	transform: rotate(45deg);
	animation: bounce 1s infinite ease-in-out;
}

	.arrow1:nth-child(2) {
		animation-delay: 0.15s;
		opacity: 0.7;
	}

	.arrow1:nth-child(3) {
		animation-delay: 0.3s;
		opacity: 1;
	}

@keyframes bounce {
	0%, 100% {
		transform: translateY(0) rotate(45deg);
	}

	50% {
		transform: translateY(10px) rotate(45deg);
	}
}
