.l-footer {
    background-color: var(--color-1);
    display: flex;
    grid-area: footer;
    height: 10rem;
    justify-content: center;

}

.l-footer__content {
    max-width: var(--global-max-width);
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.l-footer__logo {
    background-color: white;
    border-radius: 10px;
    padding: 0.5rem;
}

.l-footer__copyright {
    color: white;
}

.l-footer__copyright-text {
    text-align: center;
}

@media only screen and (max-width: 600px) {

    .l-footer {
        height: 12rem;
    }

    .l-footer__content {
        flex-direction: column;
    }

    .l-footer .c-logo {
        order: 1;
    }

    .l-footer .social-media {
        order: 2;
    }

    .l-footer__copyright {
        order: 3;
    }
}