footer{

    background-color: var(--light-color);
    color: var(--primary-color-light);
    font-family: 'Bold', sans-serif;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    width: 100%;
}

footer .main-container{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

footer .top-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 0;
    border-bottom: 1px dashed rgba(12, 124, 157, 0.3);
}

footer .top-footer .footer-img{
    display: flex;
    align-items: center;
    gap: 10px;
    width: 160px;
}
footer .top-footer .footer-img img{
    width: 100%;
    height: auto;
}
footer .top-footer .footer-links .nav-list{
    display: flex;
    gap: 20px;
    font-family: 'Bold', sans-serif;
    margin: 0;
    padding: 0;

}

footer .top-footer .footer-links .nav-list li a{
    font-size: 15px;
    color: var(--primary-color-light);
    transition: all 0.3s ease;
}
footer .top-footer .footer-links .nav-list li a:hover{
    color: var(--secondary-color);
}


footer .end-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 10px 0 5px;
}

.social-footer-icons{
    display: flex;
    gap: 20px;
}
footer .end-footer .social-footer-icons a{
    font-size: 17px;
    transition: all 0.3s ease;
    color: var(--primary-color-light);
    position: relative;
    z-index: 4;
}
footer .end-footer .social-footer-icons a:hover{
    color: var(--secondary-color);
}

footer .end-footer .social-footer-icons a.media-icons{
    color: var(--light-color);
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--primary-color-light);
    transition: all 0.3s ease;
}
footer .end-footer .social-footer-icons a.media-icons:hover{
    background-color: var(--secondary-color);
    color: var(--light-color);
    animation: rubberBand 1s infinite;
}


footer .face{
    position: absolute;
    width:auto;
    height: auto;
    bottom:0px;
    left: 0;
    z-index: 2;
}
footer .shape{
    position: absolute;
    width: auto;
    height: 100%;
    bottom: 0;
    right: 0;
    z-index: 1;
}