#footer-container {
    background-color: rgb(0, 32, 96);
    margin-top: 200px;
    padding-top: 0;
    padding-bottom: 0;
    position: absolute;
    width: 100%;
    font-size: 14px;
}

#footer-container .container {
    max-width: unset;
    min-width: unset;
}

#footer-container .font-weight-light {
    color: white;
    margin: auto;
}

#footer-container .font-weight-light a {
    color: white;
    text-decoration: none;
}

#footer-container .font-weight-light a:hover {
    color: rgb(211, 234, 255);
    text-decoration: none;
}

.foorter-li {
    line-height: 34px;
}

.footer-copyright {
    line-height: 5px;
}

.footer-logo {
    margin: auto;
}

section {
    background-color: rgb(0, 32, 96);
    margin-top: 200px;
    padding-top: 0;
    padding-bottom: 0;
    position: absolute;
    width: 100%;
}

section .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url(/static/project/img/wave.png);
    background-size: 1000px 100px;
}

section .wave1 {
    animation: animate 30s linear infinite;
    z-index: 1000;
    opacity: 1;
    animation-delay: 0s;
    bottom: 0;
}

section .wave2 {
    animation: animate2 15s linear infinite;
    z-index: 999;
    opacity: 0.5;
    animation-delay: -5s;
    bottom: 10px;
}

section .wave3 {
    animation: animate3 30s linear infinite;
    z-index: 998;
    opacity: 0.2;
    animation-delay: -2s;
    bottom: 15;
}

section .wave4 {
    animation: animate4 5s linear infinite;
    z-index: 997;
    opacity: 0.7;
    animation-delay: -5s;
    bottom: 20;
}

@keyframes animate {
    0% {
        background-position-x: 0;
        background-position-x: 1000px;
    }
}

@keyframes animate2 {
    0% {
        background-position-x: 0;
        background-position-x: -1000px;
    }
}

@keyframes animate3 {
    0% {
        background-position-x: 0;
        background-position-x: -1000px;
    }
}

@keyframes animate4 {
    0% {
        background-position-x: 0;
        background-position-x: -1000px;
    }
}