footer .more-links, footer .content-wrap, footer .socials{
    display: grid;
    display: -moz-grid;
    display: -ms-grid;
}

footer{
    /* background-color: #1c75bc; */
    /* background-color: yellow; */
    /* border-top: 1px solid black; */
}

footer .more-links{
    grid-template-columns: repeat(3, 22vw);
    padding: 0rem;
    font-weight: 500;
}


footer .more-links a{
    color: black;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0.5rem;
}

footer .content-wrap{
    grid-template-columns: max-content auto;
    column-gap: 1rem;
    justify-content: space-between;
    padding: 4rem;
}

footer .content-wrap > section p{
    margin-top: 2rem;
}
@media (max-width: 1023px){
    footer .content-wrap{
        grid-template-columns: auto;
        row-gap: 2rem;
        column-gap: 0rem;
        justify-content: center;
    }
    
    footer .content-wrap .icons{
        justify-self: center;
    }

    footer .more-links{
        grid-template-columns: repeat(3, 33%);
    }
}

@media (max-width: 725px){
    footer .more-links{
        grid-template-columns: auto;
        text-align: center;
    }
}
footer .footer-logo{
    margin-bottom: 1rem;
}

footer .icons{
    /* border: 2px solid white; */
    width: 150px;
}

footer .footer-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

footer .socials{
    grid-template-columns: repeat(2, max-content);
    column-gap: 1rem;
    justify-content: center;
    align-items: center;
}

footer .socials img{
    height: 30px;
    width: auto;
}

footer .socials .whatsapp-icon{
    height: 40px;
}

footer .copyright{
    background-color: #212b70;
    background-color: darkgoldenrod;
    background-color: rgb(30, 30, 30);
    padding: 0.5rem 1rem;
    text-align: center;
    color: white;
}

footer .copyright a{

}