footer{
    display: flex;
    justify-content: space-around;
    padding: 10rem 0 5rem 0;
}

.footer-menu{
    width: 50%;
}

.footer-menu ul{
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    gap: .5rem;
}

.footer-menu ul li{
    list-style: none;
}

.footer-menu ul li a{
    color: #211f54;
    text-decoration: none;
}

@media screen and (max-width: 1023px) {
    
    footer{
        flex-direction: column-reverse;
    }

    .footer-menu{
        width: 80%;
        margin: auto;
    }

    .footer-logo{
        margin: auto;
        padding-top: 4rem;
    }
}



@media screen and (max-width: 750px) {

    footer{
        padding: 5rem 0 5rem 0;
    }

    .footer-menu{
        width: 100%;
        margin: auto;
    }
}

@media screen and (max-width: 570px) {

    footer{
        display: flex;
        justify-content: space-around;
        padding: 5rem 0 3rem 0;
    }

    .footer-menu ul{
        display: block;
        text-align: center;
        font-size: 1.25rem;
    }

    .footer-menu ul li:not(:first-child){
        padding-top: 2rem;
    }

    .footer-logo img{
        width: 250px;
    }
}
