.theme-footer {
    margin-top: 8rem;
    padding: 3rem 1.5rem 2rem;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.05);

    >.container .company {
        margin: 2rem auto;
    }

    >.container .links {
        display: flex;
        padding-bottom: 2rem;
        margin: 0 auto;
        font-weight: 400;

        >.menu {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            align-items: center;
            width: 100%;
            justify-content: center;
            gap: 1.5rem;
            padding: 1rem 0;

            >.menu-item {
                list-style-type: none;

                >a {
                    color: #4C5253;
                    text-decoration: none;

                    &:hover {
                        color: #333;
                    }
                }
            }
        }
    }

    >.container .information {
        display: flex;
        gap: 1rem;
        align-items: center;
        flex-direction: column;
        margin: auto;
        border-top: 1px solid rgba(0, 0, 0, 0.07);
        padding-top: 1.5rem;
        margin-top: 2rem;

        >.copyright {
            text-align: center;
            font-size: 0.9rem;
        }

        >.socials .social {
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #fff;
            transition: all 0.2s ease;
            border: 2px solid transparent;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

            >.ri-linkedin-box-fill {
                color: #0a66c2;
            }
        }
    }
}


@media (min-width: 768px) {
    .links .menu {
        justify-content: center;
        flex-direction: row;
    }

    .container .information {
        justify-content: space-between;
        flex-direction: row;
    }
}


@media (min-width: 1024px) {
    .theme-footer {
        >.container .links .menu {
            flex-direction: row;
        }
    }

    .theme-footer>.container .information {
        flex-direction: row;
        justify-content: space-around;
        width: 1024px;
    }
}