/* Footer */

#footer-section {
    position: relative;
    display: flex;
    background: #333;
    justify-content: flex-end;
    align-items: flex-end;
    min-height: 600px;
}

.footer {
    position: relative;
    width: 100%;
    background: var(--primary-color);
    min-height: 100px;
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.social-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

.footer-header {
    color: #fff;
}

.menu {
    position: relative;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    flex-direction: column;
    margin-left: 0;
}

.social-icon__item,
.menu__item {
    list-style: none;
    color: #fff;
}

.social-icon__link {
    font-size: 2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}
.social-icon__link:hover {
    transform: translateY(-10px);
}

.menu__link {
    font-size: 1rem;
    color: #fff;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
    font-weight: 300;
}

.menu__link:hover {
    opacity: 1;
}

.footer p {
color: #fff;
margin: 15px 0 10px 0;
font-size: 1rem;
font-weight: 300;
}

.wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("../../images/wave.png");
    background-size: 1000px 100px;
}

.wave#wave1 {
    z-index: 1000;
    opacity: 1;
    animation: animateWaves 8s linear infinite;
}

.wave#wave2 {
    z-index: 999;
    opacity: 0.6;
    animation: animate 10s linear infinite !important;
}

.wave#wave3 {
    z-index: 1000;
    opacity: 0.4;
    animation: animateWaves 12s linear infinite;
}

.wave#wave4 {
    z-index: 999;
    opacity: 0.2;
    animation: animate 20s linear infinite;
}

@keyframes animateWaves {
    0% {
        background-position-x: 1000px;
    }
    100% {
        background-positon-x: 0px;
    }
}

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

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; /* Equal spacing between items */
    width: 80%;
    min-width: 100px;
}

.footer-row::after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--primary-color); /* Adjust the color as needed */
    margin: 20px auto;
}

.footer-col {
    display: flex;
    flex-direction: column; /* Arrange items vertically */
    align-items: center; /* Align items to the left */
    width: 50%;
    min-width: 250px;
    padding: 20px;
}

.footer-col-center{
    display: flex;
    flex-direction: column; /* Arrange items vertically */
    align-items: center; /* Align items to the left */
    width: 100%;
}

@media (max-width: 768px) {
    .wave {
        height: 50px;
        top: -50px;
        background-size: 800px 60px;
    }
}