footer{
    background-color: #1B1717;
    color: #ffffff;
    padding: 1rem;
    padding-top: 3rem;
}

footer div{
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    gap: .3rem;
}

footer div h4{
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 800;
    width: fit-content;
    /* border-bottom: 1px solid #C94E1A; */
}

footer div i{
    color: #C94E1A;
    margin-right: .5rem;
}

footer div:first-of-type p:first-of-type{
    margin-bottom: 1rem;
}

footer div span.marcar{
    border-bottom: 1px solid #C94E1A;
}

footer .copyright{
    margin-bottom: -1rem;
    margin-top: 2rem;
    text-align: center;
    padding: 0.5rem 0;
    font-weight: 300;
    border-top: 1px solid #ffffff;
}

@media (min-width: 1024px) {
    footer{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
    }

    footer .copyright{
        grid-row: 2 / 2;
        grid-column: 1 / 4;
        width: 100%;
    }
}