.footer {
    margin: 190px 0 0 0;
    position: relative;
    background: var(--color0401);
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("background-wave.png");
    background-size: 1000px 100px;
}
#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animate-waves 4s linear infinite;
}
#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animate 4s linear infinite !important;
}
#wave3 {
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animate-waves 3s linear infinite;
}
#wave4 {
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animate 3s linear infinite;
}
@keyframes animate-waves {
    0% {background-position-x: 1000px;}
    100% {background-positon-x: 0px;}
}
@keyframes animate {
    0% {background-position-x: -1000px;}
    100% {background-positon-x: 0px;}
}
.footer ul {
    display: flex;
    justify-content: center;
    margin: 10px 0;
    flex-wrap: wrap;
    padding: 0px;
}
.footer ul li {
    list-style: none;
}
.footer ul li a {
    font-family: Sahel-SemiBold;
    font-size: 18px;
    color: var(--color0402);
    margin: 0px 14px;
    text-decoration: none;
}
.footer ul li:hover {
    transform: translateY(-4px);
}
.footer ul li a img {
    width: 40px;
}
.footer-tel {
    display: flex;
    justify-content: center;
}
.footer a {
    text-decoration: none;
    color: color-mix(in srgb, var(--color0402) 90%, transparent);
    margin: 4px;
}
.footer a:hover {
    transform: translateY(-4px);
}
.footer span {
    color: var(--color0402);
    margin: 4px;
}
.footer p {
    padding-top: 10px;
    color: var(--color0402);
    margin: 4px;
}
.footerhr {
    width: 80%;
    border: 0px;
    margin: 20px auto;
    border-bottom: 1px solid color-mix(in srgb, var(--color0402) 70%, transparent);
}
.copyright {
    direction: rtl;
    text-align: center;
    padding: 10px 6px 100px 6px;
    color: var(--color0402);
}
.copyright p {
    padding-top: 0;
    font-family: Sahel-Light;
    font-size: 14px;
    margin-bottom: 2px;
}
.copyright p span {
    display: inline-block;
    direction: ltr;
}
.copyright a {
    font-family: Sahel-Bold;
    color: var(--color0402);
    text-decoration: underline;
}
@media screen and (max-width: 768px) {
    .footer {
        margin: 160px 0 0 0;
    }
}