.footer-section {
    background: var(--footer-bg);
    box-sizing: border-box;
    padding: 48px 0;
}

.footer-rights-desktop {
    display: flex;
}

.footer-rights {
    align-items: center;
    display: flex;
    font-size: 16px;
    justify-content: center;
}
.social-section {
    text-align: center;
}

.socialLinks {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 27px auto;
    max-width: var(--section-maxWidth);
    width: 89vw;
}

.terms-container {
    align-items: flex-end;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    margin: auto;
    width: 340px;
}

.terms-container .link-container:first-child {
    margin-left: 0;
}

.terms-container .link-container {
    align-items: center;
    display: flex;
    margin-left: 28px;
}

.terms-container a {
    color: #2f373d;
    font-size: 11px;
    line-height: 13px;
    text-align: center;
}

.link {
    cursor: pointer;
    text-decoration-line: underline;
}

.folly-link {
    color: inherit;
    text-decoration: underline;
}

@media screen and (max-width: 800px) {
    .footer-rights
    {
        font-size: 13px;
    }

    .socialLinks > div, .footer-rights {
        margin-bottom: 24px;
    }
}