footer {
    background-color: #fff;
    padding: 1rem 0;
}

footer>.waves {
    position: relative;
}

footer .wave {
    position: absolute;
    top: -170px;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 232px;
}

.wave#wave1 {
    z-index: 1;
    opacity: 1;
    bottom: 0;
}

#footer_items {
    display: flex;
    position: relative;
    justify-content: space-between;
    padding: 0px 8% 24px 8%;
    align-items: center;
    z-index: 2;
}

#copyright {
    color: black;
    font-weight: 500;
    font-family: 'Semplicita Light', sans-serif;
}

.social-media-buttons {
    display: flex;
    gap: 18px;
}

.social-media-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    background-color: #fff;
    font-size: 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    color: black;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow .3s ease;
}

.social-media-buttons a:hover {
    box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 600px) {
    #footer_items {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 1140px) {}

@media (max-width: 768px) {
    footer .wave {
        position: absolute;
        top: -72px;
        left: 0;
        bottom: 0;
        width: 100vw;
        height: 78px;
    }
}

@media (max-width: 480px) {}