 /* 波浪特效 */
.footer-header {
    position: relative;
    text-align: center;
    background: linear-gradient(90deg, rgb(246, 246, 246) 0, rgb(246, 246, 246) 25%, white 0, white);
}
 
 
.footer-waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px; /*Fix for safari gap*/
    min-height: 100px;
    max-height: 150px;
}

/* 内容 */
.footer-content {
    position: relative;
    background-color: #FDF4AC;
    width: 100%;
    padding: 3%;
}

.footer-tag {
    text-align: justify;
    padding-left: 3%;
    padding-right: 3%;
}

.footer-tag img {
    margin: 15px 0px;
    height: 120px;
}

.footer-text {
    text-align: center;
    line-height: 2rem;
    padding-top: 10px;
}

.footer-text p,.footer-text a{
    color: #5b5b5b;
}

.footer-text a:hover {
    color: #6b85c7;
}
 
/* Animation */
 
.footer-parallax > use {
    animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.footer-parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.footer-parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.footer-parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.footer-parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}
@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }
    .content {
        height: 30vh;
    }
    h1 {
        font-size: 24px;
    }
}