#sustainability {
	padding:35px 0px;
	position: relative;
	height: 600px;
	overflow: hidden;
}

#sustainability .rotateImg {
	-webkit-animation:spin 20s linear infinite;
    -moz-animation:spin 20s linear infinite;
    animation:spin 20s linear infinite
}
#sustainability:before {
	opacity: .5;
	content:"";
	width: 100%;
	height: 100%;
	position: absolute;
	left:0;
	top:0;
	background: rgb(248,248,255);
	background: linear-gradient(180deg, rgba(248,248,255,1) 0%, rgb(79 219 255 / 60%) 50%, rgba(248,248,255,1) 100%);
}
#sustainability .world {
	-webkit-animation: spin 280s linear infinite;
    -moz-animation: spin 280s linear infinite;
    animation: spin 280s linear infinite;
    transition: 2.5s;
}
#sustainability .head {
	text-align: center;
}
#sustainability .head article {
	width: 65%;
	margin:auto;
	font-weight: 300;
    font-size: 17px;
    line-height: 28px;
    color: var(--textColor);
}
#sustainability .head article b {
	text-transform: capitalize;
	font-weight: 700;
}
#sustainability .head .button {
	margin-top:25px;
	background-color:#1a9e30;
	transition: .3s;
}
#sustainability .head .button:hover {
	background-color:var(--success);
}
#sustainability .birdBox {
	position: absolute;
	left:0;
	bottom:0;
	width: 100%;
	display:flex;
	flex-wrap: nowrap;
}
#sustainability .birdBox img {
	width: 33.333%;
	opacity: .6;
}
@media screen and (max-width:992px) {
	#sustainability .head article {
		width: 100%;
	}
	#sustainability .birdBox img:last-child,
	#sustainability .birdBox img:first-child {
		display: none !important
	}
	#sustainability .birdBox img {
		width: 100%;
	}
}

