/* =========================================================
	HERO FLYING BIRDS
========================================================= */
.hero {
	position: relative;
}
.hero-bird {
	position: absolute;
	left: -100px;
	width: 100px;
	height: auto;
	z-index: 6;
	opacity: 0;
	pointer-events: none;
	user-select: none;
	will-change: transform, opacity;
	filter:drop-shadow(0 6px 10px rgba(0, 0, 0, 0.12));
}

/* Bird 1 */
.hero-bird-1 {
	top: 42%;
}
/* Bird 2 */
.hero-bird-2 {
	top: 55%;
}
/* =========================================================
	MOBILE
========================================================= */
@media (max-width: 767px) {
	.hero-bird {
		width: 40px;
	}
	.hero-bird-1 {
		top: 38%;
	}
	.hero-bird-2 {
		top: 52%;
	}
	
}