.pattern-hero-04-arrows-container {
	opacity: 0;
	animation: arrows-fade 2s ease-in forwards;

	@media only screen and (max-width: 767px) {
		background-size: cover !important;
	}
}

@keyframes arrows-fade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
