@import url('https://fonts.googleapis.com/css?family=poppins:200,300,400,500,600,700,800,900& display = swap');

footer{
    position: relative;
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

footer .social_icon, footer .menu{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

footer .social_icon li, footer .menu li {
    list-style: none;
}

footer .social_icon li a, 
footer .menu li a
{
    font-size: 2em;
    color: white;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}

footer .social_icon li a:hover{
    transform: translateY(-10)
}

footer .menu li a
{
    font-size: 1.2em;
    color: white;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
}
footer .menu li a:hover{
    opacity: 1;
}

footer p{
    color: white;
    margin-top: 15px;
    text-align: center;
    margin-bottom: 10px;
    
}

footer .wave{
    position: absolute;
    top: 1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #f00 url(images/footer/wave.png);
}

footer .wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;
}
