
.wavefooter {
  position:relative;
  text-align:center;
  background: linear-gradient(60deg, rgba(23,58,100,1) 0%, rgba(20,162,220,1) 100%);
  color:white;
}

.logo {
    width: 400px;
    fill: #173a64;
    padding: 0 0 20px 80px;
    display:inline-block;
    vertical-align: middle;
	margin: auto;
	text-align: center;
}

.inner-footer {
  height:65vh;
  width:100%;
  margin: 0;
  padding: 0;
}

.flex { /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.wavesTop {
  position:relative;
  width: 100%;
  height: 5vh;
  min-height: 100px;
  max-height: 150px;
  z-index: 90;
}

.waves {
  position:relative;
  width: 100%;
  height: 5vh;
  margin-bottom: 0; /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
  top: 85px;
  z-index: 90;
}

.wavesBg {
    background-color: rgba(0,0,0,0.0);
	height: 45px;
}

.content {
  position:relative;
  height:100%;
  text-align:center;
  background-color:#173a64;
}

/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -1s;
  animation-duration: 15s;
}
.parallax > use:nth-child(2) {
  animation-delay: -4s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -7s;
  animation-duration: 7s;
}
.parallax > use:nth-child(4) {
  animation-delay: -9s;
  animation-duration: 5s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .content {
    height:30vh;
  }
  h1 {
    font-size:24px;
  }
}