.bird{
    background-image: url('../images/bird-cells-new.svg');
    /* filter: invert(34%) sepia(55%) saturate(427%) hue-rotate(141deg) brightness(93%) contrast(91%); */
    filter: brightness(0) invert(1);

    background-size: auto 100%;
    width: 88px;
    height: 125px;
    will-change: background-position;

    animation-name: fly-cycle;
    animation-timing-function: steps(10);
    animation-iteration-count: infinite;
}

.bird-one{
    animation-duration: 1s;
    animation-delay: -0.5s;

}
.bird-two{
    animation-duration: 0.9;
    animation-delay: -0.75s;

}
.bird-three{
    animation-duration:1.25s;
    animation-delay: -0.25s;

}
.bird-four{
    animation-duration: 1.1s;
    animation-delay: -0.5s;
}

.bird-container {
	position: absolute;
	top: 10%;
  	left: -3%;
	transform: scale(0) translateX(-10vw);
	will-change: transform;
	z-index: 5;
	
	animation-name: fly-right-one;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
	
.bird-container-one{
	animation-duration: 15s;
	animation-delay: 0;
}
	
.bird-container-two{
	animation-duration: 16s;
	animation-delay: 1s;
}
	
.bird-container-three{
	animation-duration: 14.6s;
	animation-delay: 9.5s;
}
	
.bird-container-four {
	animation-duration: 16s;
	animation-delay: 10.25s;
}
/* @keyframes fly-cycle {
    100%{
        background-position: -3600px 0;
    }
} */
@keyframes fly-cycle {
	
	100% {
		background-position: -900px 0;
	}
	
}

@keyframes fly-right-one {
	
	0% {
		transform: scale(0.6) translateX(-216px);
	}
	
	10% {
		transform: translateY(2vh) translateX(216px) scale(0.8);
	}
	
	20% {
		transform: translateY(0vh) translateX(648px) scale(1);
	}
	
	30% {
		transform: translateY(4vh) translateX(1080px) scale(1.2);
	}
	
	40% {
		transform: translateY(2vh) translateX(1512px) scale(1.2);
	}
	
	50% {
		transform: translateY(0vh) translateX(1944px) scale(1.2);
	}
	
	60% {
		transform: translateY(0vh) translateX(2376px) scale(1.2);
	}
	
	100% {
		transform: translateY(0vh) translateX(2376px) scale(1.2);
	}
	
}

@keyframes fly-right-two {
	
	0% {
		transform: translateY(-2vh) translateX(-216px) scale(1);
	}
	
	10% {
		transform: translateY(0vh) translateX(216px) scale(0.8);
	}
	
	20% {
		transform: translateY(-4vh) translateX(648px) scale(1.2);
	}
	
	30% {
		transform: translateY(1vh) translateX(1080px) scale(0.9);
	}
	
	40% {
		transform: translateY(-2.5vh) translateX(1512px) scale(1);
	}
	
	50% {
		transform: translateY(0vh) translateX(1944px) scale(0.9);
	}
	
	51% {
		transform: translateY(0vh) translateX(2376px) scale(0.9);
	}
	
	100% {
		transform: translateY(0vh) translateX(2376px) scale(0.9);
	}
	
}