footer {
    background: var(--ijojo);
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 350px;
    position: relative;
    overflow: hidden;
    transition: .3s ease-in-out;
    width: 100%;
}

.bgFoot {
    position: absolute;
    z-index: 0;
    left: 0;
    height: auto;
}

.bgFoot img {
    width: 100%;
    object-fit: contain;
    filter: brightness(0%) invert() opacity(0.1);
    transform: rotate(195deg) scale(1.2);
}

.footLinks {
    height: auto;
    width: 60%;
    /* background: #ccc; */
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.footLinks ul {
    padding-top: 50px;
    width: auto;
    font-weight: 600;
    font-size: 1.2em;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    min-width: 250px;
    color: white;
}

.footLinks ul li {
    margin-top: 10px;
    list-style: none;
    line-height: 1.8em;
    font-weight: 400;
    font-size: 15px;
    transition: .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footLinks ul li a {
    text-decoration: none;
    color: var(--putih-2) !important;
    font-weight: 200;
    transition: .5s cubic-bezier(0.19, 1, 0.22, 1);
}

.footLinks ul li:hover,
.footLinks ul li:hover a {
    color: #fff;
    opacity: .5;
    transform: translateY(-5px);
}

.footLinks ul li a i {
    font-size: 1.2em;
}

.sosmedLinks {
    margin-top: 20px;
    height: auto;
    width: 60%;
    /* background: crimson; */
    border-top: 1px solid #ccc;
    background: #fff;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    flex-direction: column;
}

.logoFooter {
    margin-top: 15px;
    width: 80px;
    height: 80px;
    z-index: 1;
    margin-bottom: 10px;
    pointer-events: none;
    user-select: none;
}

.logoFooter img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boxSosmedFooter {
    width: 280px;
    height: 50px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.boxSosmedFooter li {
    list-style: none;
    font-size: 25px;
}

.boxSosmedFooter li a {
    color: #ffae0c;
    transition: .5s;
}

.boxSosmedFooter li a:hover {
    opacity: .5;
}

.sosmedLinks span {
    font-size: 12px;
    color: #333;
    padding-bottom: 10px;
}

.container-wave {
    position: relative;
    width: 100%;
    height: 50vh;
}

.container-wave img {
    position: absolute;
    top: 200px;
    width: 70px;
    height: 70px;
    left: 0;
    animation: perahu 20s linear infinite;
    z-index: 2;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    -webkit-animation: perahu 20s linear infinite;
    user-select: none !important;
    -webkit-user-drag: none !important;
    pointer-events: none;
}



.waves {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 15vh;
    /* margin-bottom: -7px; */
    min-height: 100px;
    max-height: 150px;
}

/* Animation */

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
    transition: .3s ease-in-out;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}


/*Shrinking for mobile*/
@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }
}