.footer{
	padding-top: 25.5%;
}
.footerBody{
	background: rgb(52, 123, 181);
}
footer{
	position: relative;
	width: 100%;
/*	background: rgb(4, 90, 115);*/
/*	background: #005363;*/
	/*height: 100px;
	padding: 20px 50px;
	display: flex;
	justify-content: center;
	align-items: center;*/
}
footer .social_icon{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;	
	margin: 10px 0;
	flex-wrap: wrap;
}
footer .social_icon li{
	list-style: none;
}
footer .social_icon li a{
	font-size: 2em;
	color: white;
	margin: 0 10px;
	display: inline-block;
	transition: 0.5s;
}
footer .wave{
	position: absolute;
	top:-100px;
	left:0;
	width: 100%;
	height: 100px;
	background: url(wave.svg);
	background-size:2000px 100px;
}
footer .wave#wave1{
	z-index: 2000;
	opacity: 1;
	bottom: 0;
	animation: animateWave 20s linear infinite;
}
@keyframes animateWave{
	0%{
		background-position-x: 0px;
	}
	100%
	{
		background-position-x: 2000px;
	}
}

