.footer-root {
    position: relative;
    display: flex;
    background-color: transparent;
    height: auto;

    align-items: center;
    justify-content: space-between;
    overflow: hidden;

    width: calc(100% - 4rem);
    margin: 7rem 2rem 0 2rem;

    bottom: 0;
    flex-direction: column;
    gap: 2vh;
}

.footer-container {
    position: relative;
    width: 100%;
    height:fit-content;
    overflow: hidden;
}

.copyrights {
    position: relative;
    height: auto;
    width: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.socials {
    position: relative;
    height: auto;
    width: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: row;
    gap: 1vw;
}

.extra-links {
    position: relative;
    display: flex;
    height: auto;
    width: auto;
    text-align: end;
    align-items: center;
    justify-content:center;

    display: flex;
    flex-direction: row;
    gap: 1vw;

    font: 1.2rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .footer-root {
        width: calc(100% - 2rem);
        margin: 3rem 1rem 3rem 1rem;
    }
}